问答详情
源自:6-1 练习题目

6-1帮我看看哪里错了

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace ConsoleApptest1

{

    class Program

    {

        static void Main(string[] args)

        {

            int x=0;

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

            int max = Convert.ToInt32(arr[1, 0]);      //把吴松的89设为最高分  分数max因为是int类型所以要转换

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

            {

                if (max < Convert.ToInt32(arr[i, 1]))

                {

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

                    x=i;

                }

            }

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

        }

    }

}


提问者:东東咚4025642 2016-10-09 00:41

个回答

  • 王者殇明
    2016-10-14 16:34:07

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    using System.Threading.Tasks;


    namespace ConsoleApptest1

    {

        class Program

        {

            static void Main(string[] args)

            {

                int x=0;

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

                int max = Convert.ToInt32(arr[0, 1]);      //把吴松的89设为最高分  分数max因为是int类型所以要转换

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

                {

                    if (max < Convert.ToInt32(arr[i, 1]))

                    {

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

                        x=i;

                    }

                }

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

            }

        }

    }


  • 东東咚4025642
    2016-10-09 10:47:31

    已解决.

  • 东東咚4025642
    2016-10-09 01:16:55

    x是用来储存最高分的索引的