标签:
for (int h = 1; h <= 10; h++)
{
for (int kg = 2; kg <= h; kg++)
{
Console.Write("..");
}
for (int xing = 10; xing >= h; xing--)
{
Console.Write("※");
}
Console.Write("\n");
}
反三角,空格一个太长了。。。用的..(两个句号英文字符)代替。
标签:
原文地址:http://www.cnblogs.com/zzc134680/p/5398718.html