我想問下 我這樣編譯顯示都正確答案了 怎么慕課網(wǎng)還是顯示不對
using System;
using System.Collections.Generic;
using System.Text;
namespace projAboveAvg
{
? ? class Program
? ? {
? ? ? ? static void Main(string[] args)
? ? ? ? {
? ? ? ? ? ?string[] name = { "景珍", "林惠洋", "成蓉", "洪南昌", "龍玉民", "單開江", "田武山", "王三明" };
? ? ? ? ? ?int[] score = { 90,65,88,70,46,81,100,68};?
? ? ? ? ? ? int avg=0;
? ? ? ? ? ??? ? int sum = 0;
? ? ? ? ? ? for (int i = 0; i < score.Length;i++ )
? ? ? ? ? ? {
????????????
? ? ? ? ? ? ? ? sum += score[i];
? ? ? ? ? ? }
? ? ? ? ? ???avg=sum/score.Length;
? ? ? ? ? ?
? ? ? ? ? ? Console.Write("平均分是"+avg+",高于平均分的有:");
? ? ? ? ? ? for(int i = 0; i < score.Length;i++ ){
? ? ? ? ? ? ? ? if(avg<score[i]){
? ? ? ? ? ? ? ? ? ? Console.Write(name[i]+" ");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }??
? ? ? ? }
? ? }
}
2019-10-22
結(jié)果是需要換行的
2019-09-21
格式,第一個輸出應(yīng)該是Console.WriteLine而不是Console.Write