#作業(yè)目標(biāo):讓用戶輸入姓名 語文 數(shù)學(xué) 英語 三門課的成績,然后給用戶顯示:XX,你的總成績?yōu)閄X分,平均成績?yōu)閄X分?
##代碼
Console.WriteLine("請首先輸入你的名字");
? ? ? ? ? ? string nam1 = Console.ReadLine();
? ? ? ? ? ? Console.WriteLine("請首先輸入你的語文成績");
? ? ? ? ? ? string strChinese = Console.ReadLine();
? ? ? ? ? ? Console.WriteLine("在輸入你的數(shù)學(xué)成績");
? ? ? ? ? ? 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();