最新回答 / qq_RR_15
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { string job = "科员"; if (job == "局长") { Console.WriteLine("...
2017-09-18
最赞回答 / 北凉客
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
最新回答 / qq_慕运维0487080
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { string today;//今天的午饭 string tomorrow;//明天的午饭 string temp;//中间变量 ...
2017-09-15