21

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication12
{
class Program
{
static void Main(string[] args)
{

for (int x = 0 ; x <=12; x++)
{
for (int y = -4; y <= -x; y++)


Console.Write("*");
Console.Write("\n");

}

}
}
}

posted @ 2022-06-12 16:48  ooi  阅读(84)  评论(0)    收藏  举报