#include <iostream>
#include <iomanip>
#include <cmath>
#include <stdio.h>
using namespace std;
int main()
{
int n;
cin>>n;
while(n--)
{
char c;
int a,b;
cin>>c>>a>>b;
if(c=='+')
cout << a+b<< endl;
else if(c=='-')
cout << a-b<< endl;
else if(c=='*')
cout << a*b<< endl;
else if(c=='/' ){
if(a%b!=0)
cout <<fixed<<setprecision(2)<<a/(b*1.0)<< endl;
else
cout <<a/b<< endl;}
}
return 0;
}
最后
以上就是暴躁咖啡豆最近收集整理的关于杭电OJ1170的全部内容,更多相关杭电OJ1170内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复