//让用户输入他的语文成绩和数学成绩,计算他的总成绩并显示出来
Console.WriteLine("请首先输入你的语文成绩");
String strchinese = Console.ReadLine();
Console.WriteLine("请输入你的数学成绩");
String strmath = Console.ReadLine();//100 90
int chinese = Convert.ToInt32(strchinese);
int math = Convert.ToInt32(strmath);
Console.WriteLine("你的总成绩是{0}",chinese+math);
Console.ReadKey();
网友评论