2018-10-25 C#(好像忘记了一个作业)
2018-10-25 本文已影响0人
f387b2061819
今天又是写了很牛逼的代码的一天
image.png
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("你的名字");
string name = Console.ReadLine();
Console.WriteLine("请首先输入你考的不怎么样的的语文成绩");
string strChinese = Console.ReadLine();
Console.WriteLine("再输入你差到离谱的数学成绩");
string strMath = Console.ReadLine();
Console.WriteLine("最后输入你不能见人的英语成绩");
string strEnglish = Console.ReadLine();
Double chinese = Convert.ToDouble(strChinese);
Double math = Convert.ToDouble(strMath);
Double english = Convert.ToDouble(strEnglish);
Console.WriteLine("哇,{0},你的总分居然有:{1},真不可思议,平均分是{2},真垃圾,嗝。", name, chinese + math + english, (chinese + math + english) / 3);
Console.ReadKey();
}
}
}
image.png