练习 - 显示两条消息
bash
This is the first line.
This is the second line.代码:
csharp
Console.WriteLine("This is the first line.");
Console.WriteLine("This is the second line.");
Console.WriteLine("This is the first line.");
Console.Write("This is ");
Console.Write("the second ");
Console.Write("line.");