美文网首页
10.25(2)

10.25(2)

作者: 一只皮皮橙 | 来源:发表于2018-10-25 12:22 被阅读0次

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    namespace ConsoleApplication2

    {

    class Program

    {

    static void Main(string[] args)

    {

    /**

    * 让用户输入姓名 语文 数学 英语 三门课的成绩,

    * 然后给用户显示:XX,你的总成绩为XX分

    * ,平均成绩为XX分

    * */

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

    string name = Console.ReadLine();

    Console.WriteLine("请你输入的语文成绩");

    string str_chinese=Console.ReadLine();

    Console.WriteLine("请你输入的数学成绩");

    string str_math = Console.ReadLine();

    Console.WriteLine("请你输入的英语成绩");

    string str_English= Console.ReadLine();

    int chinese = Convert.ToInt32(str_chinese);

    int math = Convert.ToInt32(str_math);

    int english = Convert.ToInt32(str_English);

    Console.WriteLine("你的总分为:{0},平均分为:{1}", chinese + math + english, (chinese + math + english) / 3);

    Console.ReadKey();

    }

    }

    }

    相关文章

      网友评论

          本文标题:10.25(2)

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