알고리즘 자료구조/백준
[백준] 5613 계산기 프로그램
yes_truly
2023. 7. 26. 01:25
728x90
🖊️문제
덧셈, 뺄셈, 곱셈, 나눗셈을 할 수 있는 계산기 프로그램을 만드시오.
🖊️문제 풀이
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int result = sc.nextInt();
int num = 0;
while (true){
char str = sc.next().charAt(0);
switch (str){
case '+' :
result += sc.nextInt();
break;
case '-':
result-= sc.nextInt();
break;
case '*' :
result *= sc.nextInt();
break;
case '/' :
result /= sc.nextInt();
break;
}
if(str=='='){
break;
}
}
System.out.println(result);
}
}
728x90