'F' → Fullscreen
In the downloaded workspace, copy template-console and name the copy fb-console-basics. Open itsProgram.cs file.
Protect the template. Always work in a copy so template-console stays clean for future activities.
Console.WriteLine("Hello, world!");Console.WriteLine("C# programs run from top to bottom.");Console.WriteLine();Console.WriteLine(); statements and identify the blank lines they create.Console.WriteLine("Hello, world!");Console.WriteLine("C# programs run from top to bottom.");Console.WriteLine();
Console.WriteLine("A console program can display several lines.");Console.WriteLine("Each statement ends with a semicolon.");Console.WriteLine();
Console.WriteLine("Run often so mistakes are easier to find.");Console.WriteLine statement.Console.WriteLine("Hello, world!");Console.WriteLine("C# programs run from top to bottom.");Console.WriteLine();
Console.WriteLine("A console program can display several lines.");Console.WriteLine("Each statement ends with a semicolon.");Console.WriteLine();
// This line is ready, but it is temporarily disabled.// Console.WriteLine("Comments can turn a line off.");
Console.WriteLine("Run often so mistakes are easier to find.");Uncomment the required statement, run your program, and compare it with this output. Your optional banner may add extra lines.
Hello, world!C# programs run from top to bottom.
A console program can display several lines.Each statement ends with a semicolon.
Comments can turn a line off.Run often so mistakes are easier to find.Answer the following questions after checking your program.
Console.WriteLine do, and what information goes inside its parentheses?Keep your working project. This Foundation activity has no separate submission unless your instructor asks to see it.