此计算器只能实现int范围内的两个数的加减乘除运算。
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
char c;
cin>>a>>c>>b;
if(c=='+'){
cout<<a+b;
}
else if(c=='-'){
cout<<a-b;
}
else if(c=='*'){
cout<<a*b;
}
else if(c=='/'){
cout<<a/b;
}else{
cout<<"输入错误";
}
return 0;
}