알고리즘 문제 풀이/백준

[백준 1438번/C#] 별 찍기 - 1

Ardmos :) 2023. 10. 21. 15:23

배운 점:

실수한 점:

using System;

namespace ConsoleApp1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            int lineCount = int.Parse(Console.ReadLine());
            string answer;

            for (int i = 1; i <= lineCount; i++) {
                answer = ""; // 매 줄 찍기 전에 초기화
                for (int j = 1; j <= i; j++)
                {
                    answer += "*"; // 이번 줄 별 찍기
                }
                Console.WriteLine(answer); // 이번 줄 별 출력하기
            }
           
        }
    }
}

 

728x90