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

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

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 回答

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

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

厉害啊 大神


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

举报

0/150
提交
取消

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

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