标签:iii str span 描述 scanf pre problem 输入 无法
题目描述:
求A+B是否与C相等。
3 -11.1 +11.1 0 11 -11.25 -0.25 1 2 +4
Yes Yes No
#include<stdio.h>
int main()
{
int N;
scanf("%d",&N);
while(N--)
{
double a,b,c;
scanf("%lf %lf %lf",&a,&b,&c);
if(a+b-c>=-0.0001&&a+b-c<=0.0001)//数据保证小数点后不超过4位。这就是个坑!
printf("Yes\n");
else printf("No\n");
}
}
是不是由于输入 无法控制数据小数点后不超过4位,才用if(a+b-c>=-0.0001&&a+b-c<=0.0001)?
标签:iii str span 描述 scanf pre problem 输入 无法
原文地址:http://www.cnblogs.com/hys1258414454/p/7225865.html