首页 > 代码库 > 输出输出以及如何拼接字符段

输出输出以及如何拼接字符段

//输出
Console.WriteLine("这是一行文字"); 自动回车的。
Console.Write("Hello world"); 不带回车的。
注意:
1.大小写敏感(快捷键操作)。
2.括号,引号,分号都是英文状态下的符号。
3.结尾不要忘记写分号。

//输出
string s =Console.ReadLine();


如何拼接字符串
Console,WriteLine("你的用户名是"++",密码是"++",请确认。");

变背景色
Console.BackgroundColor = ConsoleColor.DarkGreen;
Console.Clear();

 

//其他内容
Console.ForegroudColor = ConsoleColor.Red;//设置文字颜色
Console.BackgroudColor = ConsoleColor.Yellow;//设置背景色
Console.Clear();//清屏
Console.ResetColor();//下面的恢复到以前的颜色


Console.Write("姓名:");
string n = Console.ReadLine();
Console.Write("年龄:");
string a = Console.ReadLine();

Console.Clear();
//显示
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.Yellow;

Console.WriteLine("欢迎您:"+n+",您今年"+a+"岁。");

Console.ForegroundColor = ConsoleColor.Black;
Console.BackgroundColor = ConsoleColor.White;

Console.Write("用户名:");
string u = Console.ReadLine();
Console.Write("密码:");
string p = Console.ReadLine();

Console.WriteLine("你的用户名是"+u+",密码是"+p+",请确认。");

输出输出以及如何拼接字符段