static void Main(string[] args)
{
int a = 3;
for(int y = 1;y <= 7;y++)
{
for(int x = 1;x <= 7;x++)
{
if (Math.Abs(x - 4) == Math.Abs(a))
{
Console.Write("0");
}
else
{
Console.Write(".");
}
}
a--;
Console.WriteLine();
}
Console.ReadKey();
}
}
}
if (Math.Abs(x - 4) == Math.Abs(a))这不段是很理解,大佬可以解说下么?
额。。没必要搞的这么复杂啦。。。。