要求输入两个数和公式符号,输出计算结果
例如:
输入你要计算的公式个数: 4
输入:3+5 输出:8
输入:3x5 输出:15
输入:3/5 输出:0.6
输入:3-5 输出:-2
import java.util.Scanner;
public class Operation {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("输入你要计算的公式个数:");
int n = in.nextInt();
for(int i = 0;i < n;i++){
System.out.print("输入:");
String str = in.next();
if(str.contains("+")){
String s[] = str.split("[+]");
int a = Integer.parseInt(s[0]);
int b = Integer.parseInt(s[1]);
int sum = a + b;
System.out.println("输出:"+ sum);
}else if(str.contains("-")){
String s[] = str.split("[-]");
int a = Integer.parseInt(s[0]);
int b = Integer.parseInt(s[1]);
int sum = a - b;
System.out.println("输出:"+ sum);
}else if(str.contains("*")){
String s[] = str.split("[*]");
int a = Integer.parseInt(s[0]);
int b = Integer.parseInt(s[1]);
int sum = a * b;
System.out.println("输出:"+ sum);
}else{
String s[] = str.split("[/]");
int a = Integer.parseInt(s[0]);
int b = Integer.parseInt(s[1]);
int sum = a / b;
System.out.println("输出:"+ sum);
}
}
}
}
输入你要计算的公式个数:
4
输入:3+9
输出:12
输入:3-9
输出:-6
输入:3*8
输出:24
输入:8/2
输出:4