2007年7月29日星期日

【C#】C#标准输入标准输出语句

标准输出:

string字符串输出到屏幕:System.Console.Write(string);

输出后换行:System.Console.WriteLine(string);

标准输入:

从输入流接收一个字符:System.Console.Read();

接收字符串:System.Console.ReadLine();

没有评论: