명품 자바 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
'# Language > Java' 카테고리의 다른 글
명품 JAVA 프로그래밍 3장 2번 (0) | 2018.07.20 |
---|---|
Random 클래스를 이용한 임의의 정수 생성 (2) | 2018.07.20 |
Scanner를 이용한 입력 (0) | 2018.07.20 |
명품 JAVA 프로그래밍 3장 OpenChallenge (0) | 2018.07.20 |
명품 JAVA 프로그래밍 2장 8번 (3) | 2018.07.20 |
명품 JAVA 프로그래밍 2장 7번 (0) | 2018.07.20 |
명품 JAVA 프로그래밍 2장 6번 (0) | 2018.07.20 |