공부하는 히욤이

2438번 : 별 찍기 - 1 본문

Algorithm/BaekJoon

2438번 : 별 찍기 - 1

히욤이 2019. 2. 13. 22:17

 2438번 : 별 찍기 - 1

문제 출처 : 백준 알고리즘


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
 
public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(br.readLine());
        if (N >=1 && N<=100) {
            for (int i = 1; i <= N; i++) {
                for (int j = 1; j <= i; j++) {
                    System.out.print("*");
                }
                System.out.println();
            }
        }
    }
}
 
cs


'Algorithm > BaekJoon' 카테고리의 다른 글

10869번 : 사칙연산  (0) 2019.02.18
1008번 : A/B  (0) 2019.02.18
2739번 : 구구단  (0) 2019.02.13
2742번 : 기찍 N  (0) 2019.02.13
2741번 : N 찍기  (0) 2019.02.13