出来的结果明明和要求的一样了为啥还说我的结果不对

来源:6-1 练习题目

慕瓜8374795

2020-09-29 17:20

using System;

using System.Collections.Generic;

using System.Text;


namespace projGetMaxScore

{

    class Program

    {

        static void Main(string[] args)

        {

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

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

           int k=0;

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

           {

               if(score[k]<score[i])

               {

                   k=i;

               }

           }

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

        }    

    }

}


写回答 关注

1回答

  • weixin_宝慕林9321889
    2020-10-06 15:46:35

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

    改为

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

    weixin...

    不是,应该吧名字后面的逗号改成中文输入,不需要空格

    2020-11-04 15:48:26

    共 1 条回复 >

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题