杭电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--;
}
}
想问一下我的程序哪里出错了?按样例输出都是对的.. 展开
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--;
}
}
想问一下我的程序哪里出错了?按样例输出都是对的.. 展开
1个回答
展开全部
晕 都没有明白我的意思
我是说:感觉水题都不怎么好做
想听听各位做水题的感受
最好给点建议:怎么才能入门
我是说:感觉水题都不怎么好做
想听听各位做水题的感受
最好给点建议:怎么才能入门
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
创远信科
2024-07-24 广告
2024-07-24 广告
同轴线介电常数是指同轴电缆中介质对电场的响应能力,通常用ε_r表示,是介质相对于真空或空气的电容率。这一参数直接影响信号在电缆中的传播速度和效率。在选择同轴电缆时,需要考虑其介电常数,因为它与电缆的插入损耗、带宽和传输质量等性能密切相关。创...
点击进入详情页
本回答由创远信科提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询