作业要求:让用户输入姓名 语文 数学 英语 三门课的成绩,然后给用户显示:XX,你的总成绩为XX分,平均成绩为XX分
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入您的名字");//输入名字
string strname = 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);
Console.WriteLine("{0},你的总成绩为{1}分,平均分为{2}分", strname,Chinese+math+English,(Chinese+math+English)/3);//输出总成绩和平均分
Console.ReadKey();
}
}
}