3.2(某某总成绩以及平均分)
2018-10-30 本文已影响0人
youthisY
题目
让用户输入姓名 语文 数学 英语 三门课的成绩,然后给用户显示:XX,您的总成绩为XX分,平均成绩为X分
代码
Console.WriteLine("请输入你的姓名");
string strname=Console.ReadLine();
string name = Convert.ToString(strname);
Console.WriteLine("请输入你的语文成绩");
string strchinese = Console.ReadLine();
int chinese = Convert.ToInt32(strchinese);
Console.WriteLine("请输入你的数学成绩");
string strmath = Console.ReadLine();
int math = Convert.ToInt32(strmath);
Console.WriteLine("请输入你的英语成绩");
string strenglish = Console.ReadLine();
int english = Convert.ToInt32(strenglish);
int sum = chinese + math + english;
int qingjunfen = sum / 3;
Console.WriteLine("你的总成绩为{0}分,平均成绩为{1}",sum, qingjunfen );
Console.ReadKey();