티스토리 뷰

반응형
package prj190627;

import java.util.*;

public class While_1 {

	public static void main(String[] args) {
		
		int dan=0;
		
		System.out.print("원하는 단수를 입력하세요>>>>>>");
		
		Scanner scan = new Scanner(System.in);
		String tmp = scan.nextLine();
		dan = Integer.parseInt(tmp);
		
			int dan=0;
		
		System.out.print("원하는 단수를 입력하세요>>>>>>");
		
		Scanner scan = new Scanner(System.in);
		String tmp = scan.nextLine();
		dan = Integer.parseInt(tmp);
		
		for(int i =1; i<=9; i++) {
				System.out.printf("%d * %d = %d\n" , dan, i, dan*i);				
		}
	
	}

}
 

 

while문으로 돌리는 방법

어차피 case 2~9까지 똑같은 구문 돌릴거니

case2~9까지 한번에 써주고 한 구문만 돌리면 간단

		switch(dan) {
		case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9:
			for(int i=1; i<=9; i++) System.out.printf("%d * %d = %d\n", dan, i, dan*i);
		}
	

 

반응형

'JAVA' 카테고리의 다른 글

190627 반복문 연습  (0) 2019.06.27
190627 for문으로 "*" 피라미드, 역피라미드 세우기  (0) 2019.06.27
190627 While문 연습  (0) 2019.06.27
190626 break, continue 차이 확인하기  (0) 2019.06.26
190626 사칙연산 입력받기  (0) 2019.06.26