出来的图形和题目上的一样,为什么不对呢?求大神讲解下
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
for (int i = 1; i <= 7; i++) //请完善代码
{
Console.WriteLine();
for (int j = 1; j<= 7; j++)
{
Console.Write(i == j ||i+j==8 ? "0" : ".");
}
}
Console.ReadLine();
}
}
}