C#作业7

作者: 羊羊羊SHADOW | 来源:发表于2018-10-31 14:52 被阅读0次

    作业要求

    让用户输入姓名 语文 数学 英语 三门课的成绩,然后给用户显示:XX,你的总成绩为XX分,平均成绩为XX分

    代码

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace ConsoleApplication2
    {
    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();

            int chinese = Convert.ToInt32(strChinese);
            int math = Convert.ToInt32(strMath);
            int english=Convert.ToInt32(strEnglish);
            int total = chinese + math+english;
            double pj = total / 3;
    
            Console.WriteLine("您好,{0},你的总成绩为{1}分,平均成绩为{2}分", name, total, pj);
    
            Console.ReadKey();
    

    效果

    C#作业7

    相关文章

      网友评论

          本文标题:C#作业7

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