1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import java.util.*;
public class Main {
public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt();
for(int i=0,k=n; i<2*n; i++) { for(int j=0; j<n; j++) { System.out.print(j<k-1?" ":"*"); } if(i<n-1) k--; else k++; System.out.println(); }
sc.close();
}
}
|
'알고리즘 > 백준' 카테고리의 다른 글
[백준 10990번 ː 자바(JAVA)] 별 찍기 - 15 (0) | 2020.07.17 |
---|---|
[백준 2445번 ː 자바(JAVA)] 별 찍기 - 8 (1) | 2020.07.17 |
[백준 2864번 ː 자바(JAVA)] 5와 6의 차이 (0) | 2020.07.17 |
[백준 2675번 ː 자바(JAVA)] 문자열 반복 (0) | 2020.07.14 |
[백준 10809번 ː 자바(JAVA)] 알파벳 찾기 (0) | 2020.07.14 |