逗号都改中文了,还报错?大神求解

来源:6-1 练习题目

qq_supergirl_4

2020-02-09 15:46

using System;

using System.Collections.Generic;

using System.Text;


namespace projGetMaxScore

{

    class Program

    {

        static void Main(string[] args)

        {

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

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

            int high=0;

            string s;

            foreach(int i in score){

                if(score[i]>high){

                    high=score[i];

                    s=names[i];

                }

            }

            Console.WriteLine ("分数最高的是{0},分数是{1}",s,high);

            

        }

    }

}


写回答 关注

1回答

  • qq_supergirl_4
    2020-02-09 16:22:59

    string s;这个声明时必须赋值,我改为string s=names[0];时就运行出来了

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题

求大神解答

回答 1

C#求解大神

回答 2

求解惑大神

回答 1

求大神解答

回答 2

大神求解答

回答 4