Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- VarType
- injection
- 자바기초
- FileSystemObject
- 정규식
- instr
- javascript 한글입력체크
- sql순위
- ERD
- asp함수
- XML
- 이미지가로길이
- MSSQL보안
- array
- 인젝션
- JavaScript
- join
- 이미지세로길이
- SPLIT
- update
- WML
- VARIABLE
- sql업데이트
- jdbc driver
- wap
- tempDB
- sql랭킹
- xmldom
- 한글입력체크
- inner join
Archives
- Today
- Total
3초기억력
Variable + Scanner) 문제7 본문
package HomeWork;
import java.util.Scanner;
public class exam7 {
public static void main(String[] args) {
// 숫자 2개와 연산기호 문자 („+‟, „-‟, „*‟, „/‟) 하나를 입력받아 첫번째 입력숫자와 두번째 입력숫자 사이에 해당 기호를 넣은 연산결과를 수행하세요.
// 사용하는 변수는
// num1, num2 #숫자 2개
// operator #연산기호 („+‟, „-‟, „*‟, „/‟)
// result #결과
System.out.println("첫번째 숫자를 입력하세요 : ");
Scanner sc1 = new Scanner(System.in);
int num1 = sc1.nextInt();
System.out.println("두번째 숫자를 입력하세요 : ");
Scanner sc2 = new Scanner(System.in);
int num2 = sc2.nextInt();
System.out.println("연산기호 문자를 입력하세요 : ");
Scanner sc3 = new Scanner(System.in);
String operator = sc3.nextLine();
System.out.println(operator);
int result;
if (operator.equals("+")) {
result = num1 + num2;
} else if (operator.equals("-")) {
result = num1 - num2;
} else if (operator.equals("*")) {
result = num1 * num2;
} else if (operator.equals("/")) {
result = num1 / num2;
} else {
result = 0;
}
System.out.println("연산결과는 "+ result +" 입니다.");
}
}
'자바_기초' 카테고리의 다른 글
For - 1 ~ 5까지 출력, 구구단 (0) | 2019.05.21 |
---|---|
Variable + Scanner) 문제8 (0) | 2019.05.14 |
Variable + Scanner) 문제6 (0) | 2019.05.14 |
Variable + Scanner) 문제5 (0) | 2019.05.14 |
Variable + Scanner) 문제4 (0) | 2019.05.14 |
Comments