using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;

namespace LearnDotnet
{

    internal class Program
    {


        static void Main(string[] args)
        {
            for (int i = 0; i < 5; i++)
            {
                for (int y = 5; y > i; y--)
                {
                    Console.Write(" ");
                }
                for(int z = 0; z < i + 1; z++)
                {
                    Console.Write("*");
                }
                Console.WriteLine();

            }

        }


    }
}

'KDT > C# 프로그래밍' 카테고리의 다른 글

도전문제 4번  (0) 2023.07.20
인벤토리  (0) 2023.07.20
도전문제 2번  (0) 2023.07.20
도전문제 1번  (0) 2023.07.20
13번 문제  (0) 2023.07.20

+ Recent posts