728x90
문제
나의 답:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
for(int i = 1,n=num;i<=n;i++) {
for(int j=1;j<=i;j++) {
System.out.print("*");
}
System.out.println();
}
}
}
유후
728x90
'with my rubber duck > codingTest' 카테고리의 다른 글
백준 자바 별 찍기 - 3 (0) | 2022.04.15 |
---|---|
백준 2439 별 찍기 - 2 풀기 (0) | 2022.04.11 |
백준 10818 최소, 최대 / 언제쯤 혼자서 풀 수 있을까... (0) | 2022.04.05 |
백준 8393 합 아 짱쉽네이거~ (0) | 2022.04.04 |
백준 1924 자바 내가 이걸 풀다니 (0) | 2022.04.02 |
댓글