Printing multiple lines of text with string formatting.
using System;
public class Welcome4
{
public static void Main( string[] args )
{
Console.WriteLine( "{0}\n{1}", "Welcome to", "C# Programming!" );
}
}
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
|