已采纳回答 / 许徐如生
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { for (int x = 1; x <= 7; x++)//循环7行 { for (int y = 1; y <= 7; y+...
2017-07-18