Study Notes (05): C # fast entry -Console.WriteLine Comments

Learning immediately: https://edu.csdn.net/course/play/20589/257714?utm_source=blogtoedu

_______________________________________________________________________________________________________

Life is mediocre, short on the long race, but not road several ups and downs, gains and losses memorable.

_______________________________________________________________________________________________________

 

Console.WriteLine ( "to output content"); the output content will wrap

Console.Write ( "to output content"); the output will not wrap content

Console.ReadKey (); // wait for a key to read a value

 

Console.WriteLine("*******************************");
            Console.Write("*");
            Console.Write("     这是我的第一个C#程序    ");
            Console.WriteLine("*");
            Console.WriteLine("*******************************");
            Console.ReadKey();

 

Released six original articles · won praise 0 · Views 34

Guess you like

Origin blog.csdn.net/weixin_44944420/article/details/105284621