PS/백준
2442 별 찍기 - 5
함께자라기
2022. 3. 9. 21:54
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
int loopLeng = Integer.parseInt(buf.readLine());
for (int i = 1; i <= loopLeng; i++) {
for (int j = 0; j < loopLeng - i; j++) {
System.out.print(" ");
}
for (int k = 0; k < (i * 2) -1; k++) {
System.out.print("*");
}
System.out.println("");
}
}
}