简单acm题,为什么会wrong answer?

题目:DescriptionYourtaskistoCalculatea+b.InputTherearemultipletestcases.Eachtestcasecon... 题目:
Description
Your task is to Calculate a + b.
Input
There are multiple test cases. Each test case contains only one line. Each line consists of a pair of real number a and b(0<=a,b<=1000000), separated by a space.
Output

For each case, output the answer in one line rounded to 4 digits after the decimal point.

代码:
#include<stdio.h>
int main()
{
float a,b;
while(scanf("%f %f",&a,&b) != EOF)
{
printf("%.4f\n",(a + b));
}
return 0;
}
展开
 我来答
porker2008
2014-07-31 · TA获得超过1.4万个赞
知道大有可为答主
回答量:7066
采纳率:62%
帮助的人:1.1亿
展开全部
改用double吧,float很难保证在1000000以内还有4位小数的精度
拳拳家的小番茄
2014-07-31
知道答主
回答量:12
采纳率:0%
帮助的人:4.9万
展开全部
%.4f 是输出保留4位小数 亲
追问
难道还要四舍五入!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式