코드
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
32
33
34
35
36
37
38
|
import java.util.Scanner;
public class Calculator {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(true) {
System.out.println("첫번째 수");
int first = sc.nextInt();
System.out.println("두번째 수");
int second = sc.nextInt();
System.out.println("1.+ 2.- 3.* 4.% (번호 입력)");
int num = sc.nextInt();
if(1==num) {
int result = first + second;
System.out.println(first+"+"+second+"="+result);
}else if(2==num) {
int result = first - second;
System.out.println(first+"-"+second+"="+result);
}else if(3==num) {
int result = first * second;
System.out.println(first+"*"+second+"="+result);
}else if(4==num){
int result = first % second;
System.out.println(first+"%"+second+"="+result);
}else {
System.out.println("1~4번호 중 입력하세요");
}
}
}
}
|
cs |
이제는 눈감고도 만들 수 있는 계산기 프로그램
계산기이기 때문에 while문을 사용하여 계속 반복되고 종료를 일부러 만들지 않았다..
'Programming | Study > Java' 카테고리의 다른 글
[Java] 기본 프로그래밍 (0) | 2021.09.06 |
---|---|
[Java] txt파일 읽기 (0) | 2021.08.18 |
컴퓨터랑 가위 바위 보 하기 (2) | 2021.03.23 |
스케줄 관리 프로그램 (0) | 2021.03.23 |
세계나라 수도 사전&퀴즈 (0) | 2021.03.23 |
댓글