import java.util.Scanner;
public class Ex05 {
public static void main(String[]args) {
Scanner scanner = new Scanner(System.in);
System.out.println("====별찍기 5번====");
System.out.print("출력할 줄 수를 입력해주세요:");
int userNumber = scanner.nextInt();
for(int height = 1; height <= userNumber; height++) {
String stars = "";
for(int width = 1; width <= userNumber-height; width++) {
stars += " ";
}
for(int width = 1; width <= 2*height-1; width++) {
stars += "*";
}
System.out.println(stars);
}
scanner.close();
}
}
'JAVA' 카테고리의 다른 글
(별찍기) 마름모 절반 세로 오른쪽부분 (0) | 2020.04.23 |
---|---|
(별찍기) 역 정삼각형 (0) | 2020.04.23 |
(별찍기) 오른쪽 아래가 직각인 삼각형 (0) | 2020.04.23 |
(별찍기) 왼쪽위가 직각인 삼각형 (0) | 2020.04.23 |
(별찍기) 왼쪽 아래가 직각인 삼각형 (0) | 2020.04.23 |