用二维数组又做了一遍,有刚开始学习的加个好友吧,一起进步!

来源:6-1 练习题目

老汉化干弋为肉搏

2018-10-12 14:56

string[,] scores = { { "张一", "64" }, { "张二", "149" }, { "张三", "50" }, { "张四", "80" }, { "张五", "99" } };

            string name = null, topName = null;

            int score = 0;

            int topScore = 0;

            for (int i = 0; i <scores.GetLongLength(0); i++) 

            {

                name=scores[i,0];

                score = int.Parse(scores[i,1]);

                if (score>topScore)

                {

                    topScore = score;

                    topName = name;

                }

            }

            Console.WriteLine("最高得分是:{0},分数是:{1}",topName,topScore);

            Console.ReadKey();


写回答 关注

2回答

  • DemaciaKing
    2018-11-01 11:01:50

    其实根本不需要name和score变量的,只要topname和topscore就好了

  • qq_杭_adewzP
    2018-10-14 15:45:17

    厉害啊 大神


C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254477 学习 · 1459 问题

查看课程

相似问题