杭电ACM水题求助。。。 60

Inputcontainsmultipletestcases.ThefirstlineoftheinputisasingleintegerT(0<T<1000)which... Input contains multiple test cases. The first line of the input is a single integer T (0<T<1000) which is the number of test cases. T test cases follow. Each test case contains a char C (+,-,*, /) and two integers A and B(0<A,B<10000).Of course, we all know that A and B are operands and C is an operator.
For each case, print the operation result. The result should be rounded to 2 decimal places If and only if it is not an integer.

#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
int n;
cin>>n;
while(n)
{
char c;
int a;
int b;
cin>>c>>a>>b;
switch(c)
{
case '+':cout<<a+b<<endl;
break;
case '-':cout<<a-b<<endl;
break;
case '*':cout<<a*b<<endl;
break;
case '/':
{
if(a/b==(double)a/b)
{
cout<<a/b<<endl;
}
else if(a/b!=(double)a/b)
{
cout<<fixed<<setprecision(2)<<(double)a/b<<endl;
}
break;
}
}
n--;
}
}
想问一下我的程序哪里出错了?按样例输出都是对的..
展开
 我来答
xc...l@163.com
2017-12-09 · 超过33用户采纳过TA的回答
知道答主
回答量:59
采纳率:62%
帮助的人:12.4万
展开全部
晕 都没有明白我的意思

我是说:感觉水题都不怎么好做
想听听各位做水题的感受

最好给点建议:怎么才能入门
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
约克仪器
2024-10-21 广告
测温电桥是测温领域中测量准确度最高的一类电测设备,可以用来精确测量标准铂电阻温度计,电阻温度计和热敏电阻电阻值、部分测温电桥还可以对热电偶进行测量。约克仪器测温电桥2017年4月1日,英国ISOTECH公司由于microK系列测温电桥的技术... 点击进入详情页
本回答由约克仪器提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式