各位大神能帮忙看下报错原因吗?

来源:6-1 练习题目

慕娘5203607

2020-02-07 22:09

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

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

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

            int x = 0;

            int w = 0;

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

            { if (cj[i] > x)

                { x = cj[i]; }

            }

            {

             w = x;

             Console.WriteLine("分数是"+ w);

            }

            for (int j = 0; j< 9; j++)

            { if (cj[j] == w)

                {

                    Console.WriteLine("分数最高的是" + name[j]);

                    break;

                 }

             }

        }

    }

}


写回答 关注

3回答

  • qq_宝慕林3017504
    2020-02-21 15:50:56

    我有点吐了,这个检测有点呆,我检查了半天,发现我的“,”没有和他的一样是中文的

  • 大伟GG
    2020-02-08 23:01:03

    这是我写的///




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

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

            }
        }
    }


  • 大伟GG
    2020-02-08 22:56:26

    输出先后写反了,还有就是  for (int j = 0; j< 9; j++)  for (int i = 0; i < 9; i++)有错,应该是<8,或者用name.Length。

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题