最赞回答 / valenbine
using System;using System.Collections.Generic;using System.Text;namespace projAboveAvg{ class Program { static int Avg(int[] scores) { int avgscore=0; int sum = 0; foreach (var score in scores) ...
2017-09-25
最新回答 / 慕粉1356016785
char[,] ch = { {'我','是','软'},{'件','工','程'},{'师','啦','!'}{‘加’,‘名’,‘子’}};
2017-09-21
最赞回答 / 北凉客
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-09-18
最新回答 / 慕雪2877745
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { for (int y = 1; y <= 7; y++) { for (int x = 1; x <= 7; x++) ...
2017-09-18