第3节课第二个作业

2018-10-25  本文已影响0人  Deku啊

#作业目标:让用户输入姓名 语文 数学 英语 三门课的成绩,然后给用户显示:XX,你的总成绩为XX分,平均成绩为XX分 

##代码

Console.WriteLine("请首先输入你的名字");

            string nam1 = 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 totol = chinese + math + english;

            double average = totol / 3;

            Console.WriteLine("{0},总分{1},平均分{2}", nam1, totol, average);

            Console.ReadKey();

###实际效果图

上一篇下一篇

猜你喜欢

热点阅读