查看解决方案

已完成

以下代码是上一单元中所述挑战的一种可能的解决方案。

Console.WriteLine("This is the first line.");

Console.Write("This is ");
Console.Write("the second ");
Console.Write("line.");

此代码只是一种可能的解决方案,是实现相同结果的多种可能方法之一。 但是,你应已使用 Console.WriteLine()Console.Write(String) 方法来生成所需的输出。

This is the first line.
This is the second line.

如果你成功了,那么祝贺你! 请继续下一个单元,进行知识检查。

重要

如果在完成此项挑战时遇到问题,则先回顾前面的几个单元,然后再继续。