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;i<=num;i++) {
for(int k = num;k>i;k--) {
System.out.print(" ");
}
for(int j = 0;j< 2*i-1;j++){
System.out.print("*");
}
System.out.println();
}
}
}
728x90
'with my rubber duck > codingTest' 카테고리의 다른 글
[프로그래머스] 수박수박수박수박수박수? (0) | 2022.06.02 |
---|---|
[프로그래머스] 가운데 글자 가져오기 (0) | 2022.06.02 |
백준 2441 별 찍기 - 4 자바 (0) | 2022.04.17 |
백준 자바 별 찍기 - 3 (0) | 2022.04.15 |
백준 2439 별 찍기 - 2 풀기 (0) | 2022.04.11 |
댓글