这样有什么问题?

来源:6-1 练习题目

zsqzsq

2017-07-16 21:25

using System;
using System.Collections.Generic;
using System.Text;

namespace projGetMaxScore
{
    class Program
    {
        static void Main(string[] args)
        {
            int max=0;
            string [,]score={{"吴松","89"},{"钱东宇","90"},{"伏晨","98"},{"陈陆","56"},{"周蕊","60"},{"林日鹏","91"},{"何昆","93"},{"关欣","85"}}
            for(int i=0;i<8;i++)
            {
                if((int)score[i,1]>max)
                {
                    max=(int)score[i,1];
                }
            }
            Console.WriteLine("最高分的是"+score[max,0]+"分数是"+score[max,1]);
        }
    }
}

写回答 关注

2回答

  • mooncake2018
    2018-04-24 11:34:43

    不能强制转换string为int,你可以使用string.compare比较,Convert.toInt32转换,int.Parse()转换等

  • qq_水梦叶满天_04112467
    2017-07-16 22:08:01

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace projGetMaxScore

    {

        class Program

        {

            static void Main(string[] args)

            {

                int max = 0;

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

                int fen = int.Parse(score[0, 1]);

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

                {

                    if (int.Parse(score[i, 1]) > fen)

                    {

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

                        max = i;

                    }

                }

                Console.WriteLine("最高分的是" + score[max, 0] + "分数是" + score[max, 1]);

            }

        }

    }

    最大值,与最大值的下标是两个值,需要两个变量来单独存放。

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题