반응형
문제
https://www.acmicpc.net/problem/2438
*
**
***
****
*****
다음과 같은 형태의 별을 출력하는 문제
풀이
i = 1일 때,
j = 0 -> *
// *
i = 2 일 때,
j = 0 -> *
j = 1 -> *
// **
...
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
for (int i = 1; i <= n; i++) {
for (int j = 0; j < i; j++) {
System.out.print("*");
}
System.out.println();
}
scan.close();
}
}
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
[Baekjoon] 백준 2164번 카드2 (1) | 2022.05.17 |
---|---|
[백준] 2439번 별찍기 - 2 (0) | 2021.11.03 |
[백준] 10952번 A+B - 5 (0) | 2021.10.22 |
[백준] 2884번 알람 시계 (0) | 2021.10.21 |
[백준] 14681번 사분면 고르기 (0) | 2021.10.21 |