三元运算符
for(int x =1;x <=7;x++) { for(int y = 1;y<=7;y++) { Console.Write(x==y || x+y==8?"O":"."); } Console.WriteLine(); }
for(int x =1;x <=7;x++) { for(int y = 1;y<=7;y++) { Console.Write(x==y || x+y==8?"O":"."); } Console.WriteLine(); }
2020-03-27
举报