문제

첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제

입력

첫째 줄에 N(1 ≤ N ≤ 100)이 주어진다.

출력

첫째 줄부터 N번째 줄까지 차례대로 별을 출력한다.

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Text;
 
class Program
{
    static void Main(string[] args)
    {
        int a = int.Parse(Console.ReadLine());
        StringBuilder aa = new StringBuilder();
        for(int i = 1; i <= a; i++)
        {
            for(int j = 0; j < i; j++)
            {
                aa.Append("*");
            }
            aa.Append("\n");
        }
        Console.Write(aa);
    }
}
cs

 

2중 for문을 이용하여 구현.

 

 

https://www.acmicpc.net/problem/2438

 

2438번: 별 찍기 - 1

첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제

www.acmicpc.net

 

+ Recent posts