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

我的代码运行出来了,为什么还是提交过不了

using System;

using System.Collections.Generic;

using System.Text;


namespace projGetMaxScore

{

    class Program

    {

        static void Main(string[] args)

        {

            string[] name=new string[8];

            name[0]="吴松";

            name[1]="钱东宇";

            name[2]="伏晨";

            name[3]="陈陆";

            name[4]="周蕊";

            name[5]="林日鹏";

            name[6]="何昆";

            name[7]="关欣";

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

            

            int max=score[0];

            int count=0;

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

            {

                if(score[i]>max)

                {

                    max=score[i];count=i;

                }

            }

            Console.Write("分数最高的是"+name[count]+","

            +"分数是"+score[count]);

            

        }

    }

}


正在回答

3 回答

第一个类初始值是string,要使用函数调用,分数是int类型,会出错

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

using System;

using System.Collections.Generic;

using System.Text;


namespace projGetMaxScore

{

    class Program

    {

        static void Main(string[] args)

        {

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

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

            int yy= Maxfenshu(fenshu);

            Console.WriteLine("分数最高的是{0},分数是{1}", name[2], yy);

        }

       private static int Maxfenshu(int[] yy)

        {

           

            int max = yy[0];

            for(int i=0;i<yy.Length;i++)

            {

                if (yy[i] > max) 

                max = yy[i];

               

            }

            return max;

        }

        

    }


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

通过了,是因为Console.Write("分数最高的是"+name[count]+"," +"分数是"+score[count]);里输出的逗号应该是中文的,不是英文符号

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

举报

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

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

进入课程

我的代码运行出来了,为什么还是提交过不了

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