前面我我们学习了如何在控制台输出一句话,今天我们学习一下更详细的输出方式。
Console.WriteLine();和Console.Write();我们来看一下下面几行代码,
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace hello { class Program { static void Main(string[] args) { Console.WriteLine("公众号"); Console.WriteLine("GreenBoy"); Console.ReadKey(); } } }