新手求助C#语法输出问题
//Console.WriteLine("请输入你的语文成绩:");//string chinese = Console.ReadLine();
//Console.WriteLine("请输入你的数学成绩:");
//string math = (int)Console.ReadLine();
//Console.WriteLine("你的总成现是:{0}",chinese+math);
//Console.ReadKey();
这里输出的是总成绩,为什么{0},这个变量没 声明就是后面的表达式呢?
{0}不是个变量是个占位符 Console.WriteLine("请输入你的语文成绩:");
int chinese =Convert .ToInt32 ( Console.ReadLine());
Console.WriteLine("请输入你的数学成绩:");
intmath =Convert .ToInt32 (Console.ReadLine());
Console.WriteLine("你的总成现是:{0}", chinese + math);
Console.ReadKey();
页:
[1]