[백준] 2438번 문제, 별 찍기 - 1
문제
여기를 눌러 문제를 확인하세요.
코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int b2438 = sc.nextInt();
for(int i = 0; i < b2438; i++) {
for(int j = 0; j <= i; j++) {
System.out.print("*");
}
System.out.print("\n");
}
}
}