문제링크
https://www.acmicpc.net/problem/2443
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main_2443 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
for(int i=0;i<N;i++) {
for(int j=0;j<i;j++)
System.out.print(" ");
for(int j=0;j<(N*2-1)-(i*2);j++)
System.out.print("*");
/*for(int j=0;j<i;j++)
System.out.print(" ");*/
System.out.println();
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[JAVA]백준_10974_모든 순열 (0) | 2021.02.07 |
---|---|
[JAVA]백준_5597_과제 안 내신 분..? (0) | 2021.02.07 |
[JAVA]백준_2167_2차원 배열의 합 (0) | 2021.02.07 |
[JAVA] 백준_2493_탑 (0) | 2021.02.07 |
백준_1244_스위치 켜고 끄기 (0) | 2021.02.02 |