简单的C程序

发布于 2024-10-17 17:21:55 字数 265 浏览 8 评论 0原文

该程序基于输入/输出部分中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

意中人 2024-10-24 17:21:55

scanf中格式代码错误。它应该是 %lf(L 小写),而不是 %1f

 while (scanf("%lf",&v)==1)

这是因为 %lf 扫描双精度型,而 %f 扫描浮点型。有关详细信息,请参阅 scanf 格式代码

The format code is wrong in scanf. It should be %lf (with lower case L), not %1f.

 while (scanf("%lf",&v)==1)

This is because %lf scans for a double, and %f scans for a float. For details, see scanf format codes.

月牙弯弯 2024-10-24 17:21:55

尝试将双精度数更改为浮点数。

Try changing the double to a float.

野味少女 2024-10-24 17:21:55
scanf("%1f",&v)

您读取的是浮点型,但您的变量是双精度型。尝试:

scanf("%lf",&v)
scanf("%1f",&v)

You reading a float, but your variable is a double. Try:

scanf("%lf",&v)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文