https://www.acmicpc.net/problem/2438
정답
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
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());
for(int i=1; i<=n;i++){
for(int j=1; j<=i;j++){
System.out.print("*");
}
System.out.println();
}
}
}
'JAVA > 백준' 카테고리의 다른 글
[Java11] A+B -5 (0) | 2024.09.11 |
---|---|
[Java11] 2439번 : 별 찍기 -2 (0) | 2024.09.11 |
[Java11] 11022번 : A+B -8 (0) | 2024.09.11 |
[Java11] 11021번 : A+B -7 (0) | 2024.09.11 |
[Java11] 15552번 : 빠른 A+B (0) | 2024.09.11 |