杭电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.6万
展开全部
晕 都没有明白我的意思

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

最好给点建议:怎么才能入门
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
创远信科
2024-07-24 广告
同轴线介电常数是指同轴电缆中介质对电场的响应能力,通常用ε_r表示,是介质相对于真空或空气的电容率。这一参数直接影响信号在电缆中的传播速度和效率。在选择同轴电缆时,需要考虑其介电常数,因为它与电缆的插入损耗、带宽和传输质量等性能密切相关。创... 点击进入详情页
本回答由创远信科提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式