为了账号安全,请及时绑定邮箱和手机立即绑定

6-1中的习题如果加上语数外三个科目的成绩表该如何编写,望大神告知一二!

6-1中的习题如果加上语数外三个科目每个学生的成绩表该如何编写,望大神告知一二!

正在回答

2 回答

using System;

using System.Collections.Generic;

using System.Text;


namespace projGetMaxScore

{

    class Program

    {

        static void Main(string[] args)

        {

          //语数外三科 可以用二维数组来写

           //{{语文成绩,数学成绩,英语成绩}}

            int[,] score = new int[5,3]{ {98,88,95 },{80,60,56}, {75,40,90 }, {68,50,23}, {82,100,85} };

            string[] name = new string[] { "1吴松", "2钱东宇", "3伏晨", "4陈陆", "5周蕊"};

        for(int j=0;j<3;j++)

        {

            int Max= 0;

            string MaxName = null;

              for (int i = 0; i < 5; i++)

            {

                if (score[i,j] > Max)

                {

                    Max = score[i,j];

                    MaxName = name[i];

                }

            }  

            switch(j) 

            {

             case 0 :  Console.WriteLine("语文分数最高的是{0},分数是{1},", MaxName, Max); continue;

             case 1 : Console.WriteLine("数学分数最高的是{0},分数是{1},", MaxName, Max);  continue; 

             case 2 : Console.WriteLine("英语分数最高的是{0},分数是{1},", MaxName, Max); continue;           

         }

            }      

            Console.ReadKey();   

        }

    }

}

//减少复杂性

0 回复 有任何疑惑可以回复我~

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace test

{

    public class Program

    {

        public static void Main(string[] args)

        {

            //语数外三科 可以用二维数组来写

            //{{语文成绩,数学成绩,英语成绩}}

            int[,] score = new int[5,3]{ {98,88,95 },{80,60,56}, {75,40,90 }, {68,50,23}, {82,100,85} };

            string[] name = new string[] { "1吴松", "2钱东宇", "3伏晨", "4陈陆", "5周蕊"};


            int MaxChinese = 0;

            int MaxMath = 0;

            int MaxEnglish = 0;

            string MaxChineseName = null;

            string MaxMathName = null;

            string MaxEnglishName = null;

            for (int i = 0; i < 5; i++)

            {

                if (score[i,0] > MaxChinese)

                {

                    MaxChinese = score[i,0];

                    MaxChineseName = name[i];

                }

            }

            Console.WriteLine("语文分数最高的是{0},分数是{1},", MaxChineseName, MaxChinese);

            for (int j = 0; j < 5; j++)

            {

                if (score[j,1] > MaxMath)

                {

                    MaxMath = score[j,1];

                    MaxMathName = name[j];

                }

            }

            Console.WriteLine("数学分数最高的是{0},分数是{1},", MaxMathName, MaxMath);

            for (int k = 0; k < 5; k++)

            {

                if (score[k,2] > MaxEnglish)

                {

                    MaxEnglish = score[k,2];

                    MaxEnglishName = name[k];

                }

            }

            Console.WriteLine("英语分数最高的是{0},分数是{1},", MaxEnglishName, MaxEnglish);

            Console.ReadKey();

        }

    }

}

写的比较冗余,期待有谁贴出更精简的代码, 共同学习一下 谢谢。

0 回复 有任何疑惑可以回复我~
#1

慕仔4095262 提问者

正在入门阶段感谢受教
2018-09-20 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

6-1中的习题如果加上语数外三个科目的成绩表该如何编写,望大神告知一二!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信