杭电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--;
}
}
想问一下我的程序哪里出错了?按样例输出都是对的.. 展开
展开全部
晕 都没有明白我的意思
我是说:感觉水题都不怎么好做
想听听各位做水题的感受
最好给点建议:怎么才能入门
我是说:感觉水题都不怎么好做
想听听各位做水题的感受
最好给点建议:怎么才能入门
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
约克仪器
2024-10-21 广告
2024-10-21 广告
测温电桥是测温领域中测量准确度最高的一类电测设备,可以用来精确测量标准铂电阻温度计,电阻温度计和热敏电阻电阻值、部分测温电桥还可以对热电偶进行测量。约克仪器测温电桥2017年4月1日,英国ISOTECH公司由于microK系列测温电桥的技术...
点击进入详情页
本回答由约克仪器提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询