想知道哪里有問題,請求各位大佬回答
using System;
using System.Collections.Generic;
using System.Text;
namespace projGetMaxScore
{
??? class Program
??? {
??????? static void Main(string[] args)
??????? {
???????????
??????????? int[] mark = new []{89,90,98,56,60,91,93,85} ;
??????????? int a = mark[i];
??????????? for(int i=0;i<mark.Length;i++)
??????????????
??????????????? if (a>=mark[i])
?????????????????? a = a;
??????????????? else
?????????????????? a = mark[i];
??????????? string[] name = new []{"吳松","錢東宇","伏晨","陳陸","周蕊","林日鵬","何昆","關(guān)欣"};
????????????? Console.Write("分?jǐn)?shù)最高的是" + name[i] +"," +"分?jǐn)?shù)是" + mark[i]);
???????????
???????????
??????? }
??? }
}
2018-09-10
? ?1.int a = mark[i] 這個有問題;2.for循環(huán)也沒有大括號;3.?Console.Write("分?jǐn)?shù)最高的是" + name[i] +"," +"分?jǐn)?shù)是" + mark[i]);沒有記錄i,你用取不到下標(biāo)