美文网首页
第三次作业第二题

第三次作业第二题

作者: 似是而非_30f0 | 来源:发表于2018-10-25 09:43 被阅读0次

.#代码

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();

}

}

}

相关文章

网友评论

      本文标题:第三次作业第二题

      本文链接:https://www.haomeiwen.com/subject/mhhqtqtx.html