티스토리 뷰
반응형
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 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- PageNotFound - No mapping for GET
- POI EXCEL
- JSON날짜
- Failed to load resource: the server responded with a status of 404 (Not Found)
- 이메일 정규식
- select제어
- ''찾기
- IntelliJ #gradle #tomcat #spring #springmvc
- no getter for property named
- 정규식
- poi 엑셀
- selectbox
- spring 엑셀
- 계좌번호정규식
- js
- Spring
- 정규식 한글만
- 정규식 특수문자
- mybatis
- jQuery
- 엑셀다운로드
- 정규식 숫자만
- 공백찾기
- JSON파싱
- SpringXmlModelInspection
- spring error #
- 인텔리제이
- JSON
- Regex
- poi
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함