#include <iostream>
#include <iomanip>
using namespace std;
int main()
{ int n,i(0),a,b;
char ope;
cin>>n;
while(i++<n)
{ cin>>ope>>a>>b;
if(ope=='+') cout<<a+b<<endl;
if(ope=='-') cout<<a-b<<endl;
if(ope=='*') cout<<a*b<<endl;
if(ope=='/')
{ if(a%b!=0) cout<<fixed<<setprecision(2)<<(double)a/b<<endl;
else cout<<a/b<<endl;
}
}
return 0;
}
tips:注意题中的“The result should be rounded to 2 decimal places If and only if it is not an integer.”
只有当不是整数的时候才保留两位小数,也就是说如果能够整除,还是得显示整数,所以做除法的时候得分成两部分来输出。