Problem Description
简单计算器模拟:输入两个整数和一个运算符,输出运算结果。
Input
第一行输入两个整数,用空格分开;
第二行输入一个运算符(+、-、*、/)。
所有运算均为整数运算,保证除数不包含0。
Output
输出对两个数运算后的结果。
Sample Input
30 50
*
Sample Output
1500
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
int m = reader.nextInt();
int n = reader.nextInt();
String a;
a = reader.next();
if (a.equals("+"))
System.out.println(m + n);
else if (a.equals("-"))
System.out.println(m - n);
else if (a.equals("*"))
System.out.println(m * n);
else if (a.equals("/"))
System.out.println(m / n);
}
}