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

不知道哪里错了

namespace ConsoleApp11

{

    class Program

    {

        static void Main(string[] args)

        {

            string[] names = new string[8] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };

           int[] scores = new int[8] { 89, 90, 98, 56, 60, 91, 93, 85 };

         

            int x = 0;

            for (x=0;x<8;x++ )

            {    

                if (scores[x] > scores[0])

                {   

                    scores[0] =scores[x];

                 }

             }

            int max = scores[0];

           Console.Write("分数最高的是" + names[x] + "分数是" + max );


        }

    }

}


正在回答

2 回答

字符串name为空

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

改成这样

  string[] names = new string[8] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };

           int[] scores = new int[8] { 89, 90, 98, 56, 60, 91, 93, 85 };

            string name = null;

            int x = 0;

            for (x=0;x<8;x++ )

            {    

                if (scores[x] > scores[0])

                {   

                    scores[0] =scores[x];

                    name=names[x];

                   

                 }

                 

                 

             }

            int max = scores[0];

           

           Console.Write("分数最高的是{0},分数是{1}",name,max );

第三行是什么意思

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

举报

0/150
提交
取消
C#开发轻松入门
  • 参与学习       254041    人
  • 解答问题       1459    个

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

进入课程

不知道哪里错了

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