Printing multiple lines with a single statement.
using System;
public class Welcome3
{
public static void Main( string[] args )
{
Console.WriteLine( "Welcome\nto\nC#\nProgramming!" );
}
}
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
|