# Language/Java

명품 JAVA 프로그래밍 3장 1번

명품 자바 Programming 
Chapter3 Ex1

Q :




키보드로부터 임의의 정수를 입력받고 *를 출력하는 프로그램을 작성하라. 예를 들어, 5를 입력받았으면 그 결과는 다음과 같다.









Solution







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package chap3ex;
import java.util.Scanner;
public class q1 {
    public static void main(String[] args) {
        int count;
        Scanner a = new Scanner(System.in);
        
        System.out.println("임의의 정수를 입력하세요>>");
        count = a.nextInt();
        for(int i = count; i >= 0; i--){
            for(int j = 0; j < i; j++)
            System.out.print("*");
        System.out.println("");    
        }
    }
}
 
cs











Key Point






이중 반복문의 사용










유용하셨다면 공감 버튼 ↓ 눌러주세요! 


728x90