代碼沒錯,但不能提交,改哪里
using System;
using System.Collections.Generic;
using System.Text;
namespace projAboveAvg
{
? ? class Program
? ? {
? ? ? ? static void Main(string[] args)
? ? ? ? {
? ? ? ? ? ? int[] score=new int[]{90,65,88,70,46,81,100,68};
? ? ? ? ? ? string[] names=new string[]{"景珍","林惠洋","成蓉","洪南昌","龍玉民","單江開","田武山","王三明"};
? ? ? ? ? ? int sum=score[0];
? ? ? ? ? ? string above=null;
? ? ? ? ? ? for(int i=1;i<score.Length;i++){
? ? ? ? ? ? ? ? sum+=score[i];
? ? ? ? ? ? }
? ? ? ? ? ? int average = sum/score.Length;
? ? ? ? ? ? for(int j=0;j<score.Length;j++){
? ? ? ? ? ? ? ? if(score[j]>average){
? ? ? ? ? ? ? ? ? ? above+=names[j]+" ";
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? Console.Write("平均分是"+average+","+"高于平均分的有"+above);
? ? ? ? }
? ? }
}
2019-02-18
"高于平均分的有"后面少了冒號,另外這些符號都得用中文的,你自己檢查一下