猿问

为什么VS215能显示结果,IMOOC无法通过( 课程:C#开发轻松入门,第6章)

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace test1

{

    class Program

    {

        static void Main(string[] args)

        {

            string[,] exam = new string[,] { { "吴松","89"}, { "钱东宇", "90" }, { "伏晨", "98" }, { "陈陆", "56" }, { "周蕊", "60" }, { "林日鹏", "91" }, { "何昆", "93" }, { "关欣", "85" } };

            int max_i = 0, max = int.MinValue;

            for (int i = 0; i < exam.GetLength(0); i++)

            {

                if(Convert.ToInt32(exam[i,1]) > max)

                {

                    max_i =i;

                    max = Convert.ToInt32(exam[i, 1]);

                }

            }

            Console.Write("分数最高的是{0},分数是{1}",exam[max_i,0],exam[max_i,1]);

        }

    }

}


YenJoe_Nieh
浏览 1131回答 0
0回答
随时随地看视频慕课网APP
我要回答