已采纳回答 / 慕九州8519729
for(int i=0;i<score.Length;i++)\\循环条件{if(score[i]<60)\\判断条件Console.Write(score[i]+",");}上面那个写错了,少写了分号
2017-05-14
已采纳回答 / weibo_君临可口可乐_0
for (int x = 1; x <= 7; x++)//循环7行 { for (int y = 1; y <= 7; y++)//循环7列 { if (x == y || x + y == 8)//对角线打印O { Console.Write("O"); ...
2017-05-13