反三角

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(" ");

}

原文地址:https://www.cnblogs.com/zzc134680/p/5398718.html