Console.WriteLine("請輸入你的姓名");
string name = Console.ReadLine();
Console.WriteLine("請輸入你的語文成績");
string intchinese = Console.ReadLine();
Console.WriteLine("請輸入你的數(shù)學(xué)成績");
string intmath = Console.ReadLine();
Console.WriteLine("請輸入你的英語成績");
string intenglishi = Console.ReadLine();
int chinese = Convert.ToInt32(intchinese);
int math = Convert.ToInt32(intmath);
int englishi = Convert.ToInt32(intenglishi);
int sum = chinese + math + englishi; double averange = sum / 3;
Console.WriteLine("{0},你的總成績?yōu)閧1}平均分為{2}",name,sum,averange); Console.ReadKey();
圖片發(fā)自簡書App