企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
写入控制台 ``` Console.WriteLine("Hello World!"); ``` 读取用户在控制台输入的内容 ``` Console.ReadLine(); ``` 字符串中插入变量:string.format ``` string name = "dash"; int age = 20; string speak = string.Format("我的名字叫{0},今年{1}岁啦",name,age); Console.WriteLine("我的名字叫{0},今年{1}岁啦", name, age); Console.WriteLine(speak); Console.ReadLine(); ``` 定义空字符 ``` char c='\0'; //char c='';会报错 //char c=' ';是空格 //String str='';是可以的 ``` ## **货币表示:** ``` Console.WriteLine("金额:{0:c}",100);//金额:¥100 Console.WriteLine("金额:{0:d2}", 5);//金额:05 d2:不足2位0填充 d3:不足3位0填充 Console.WriteLine("金额:{0:f1}", 1.54);//金额:1.5 f1:指定精度四舍五入显示(保留1位小数) f2:指定精度四舍五入显示(保留2位小数) ``` ## **百分数显示** ``` Console.WriteLine("比率:{0:p}",0.1);//比率:%10.00 Console.WriteLine("比率:{0:p1}",0.1);//比率:%10.0 Console.WriteLine("比率:{0:p0}",0.1);//比率:%10 ```