简单的C程序
该程序基于输入/输出部分中的 K&R 中的程序,
#include <stdio.h>
main(){
double sum, v;
sum = 0;
while (scanf("%1f",&v)==1)
printf("\t%.2f\n",sum+=v);
return 0;
}
它可以编译正常。但是当尝试运行时,任何输入的输出都是“-NAN”,大概不是数字。我不知道为什么。任何建议将不胜感激。
This program is based on the program in K&R in the input/output section
#include <stdio.h>
main(){
double sum, v;
sum = 0;
while (scanf("%1f",&v)==1)
printf("\t%.2f\n",sum+=v);
return 0;
}
It compiles ok. But when trying to run, from any input the output is "-NAN", presumably NOT A NUMBER. I have no idea why. Any advice would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
scanf中格式代码错误。它应该是
%lf
(L 小写),而不是%1f
。这是因为
%lf
扫描双精度型,而%f
扫描浮点型。有关详细信息,请参阅 scanf 格式代码。The format code is wrong in scanf. It should be
%lf
(with lower case L), not%1f
.This is because
%lf
scans for a double, and%f
scans for a float. For details, see scanf format codes.尝试将双精度数更改为浮点数。
Try changing the double to a float.
您读取的是浮点型,但您的变量是双精度型。尝试:
You reading a float, but your variable is a double. Try: