.#代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{//让用户输入姓名 语文 数学 英语 三门课的成绩,然后给用户显示:XX,你的总成绩为XX分,平均成绩为XX分
Console.WriteLine("姓名");
string name = Console.ReadLine();
Console.WriteLine("语文");
string strchinese = Console.ReadLine();
Console.WriteLine("数学");
string strmath = Console.ReadLine();
Console.WriteLine("英语");
string strenglish = Console.ReadLine();
//将字符型数字转化为数值型数字
int chinese = Convert.ToInt32(strchinese);
int math = Convert.ToInt32(strmath);
int english = Convert.ToInt32(strenglish);
int total = math + english + chinese;
int ave = total / 3;
Console.WriteLine("{0},你的总成绩为{1}分,平均成绩为{2}分", name, total, ave);
Console.ReadKey();
}
}
}
网友评论