for(int x=1;x<=7;x++) { for (int y = 1; y <= 7; y++) { a = x == y || x + y == 8 ? "o" : "."; Console.Write(a); } Console.WriteLine(); }
a没有定义类型
for(int x=1;x<=7;x++)
{
for(int y=1;y<=7;y++)
{
string a = x == y || x + y == 8 ? "O" : ".";
Console.Write(a);
}
Console.WriteLine();
}
注意加粗的地方,没有被复制。