[백준] C# : 2438번(별 찍기-1)

Jag·2023년 7월 3일
0

Baekjoon

목록 보기
2/12
post-thumbnail
using System;


namespace baekjoontest
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = int.Parse(Console.ReadLine());

            for(int i = 0; i < a; i++)
            {
                for(int j = 0; j<=i; j++)
                {
                    Console.Write("*");
                }
                Console.WriteLine();
            }
        }
    }
}
profile
QA Engineer

0개의 댓글