通过 scanf 输入时双打表现得很奇怪

发布于 2024-12-26 05:22:43 字数 200 浏览 0 评论 0原文

我正在 Objective-C 中实现一个小型 cmd 计算器,用于 OOP 练习。我通过 scanf() 获取双精度数的输入,为了获取输入,我使用 %f 进行格式化,然后将其放入 double 变量中。由于某种原因,它总是读取奇数输入。我不知道发生了什么,但是当我将所有类型更改为 int 时,效果非常好。

I was implementing a small cmd calculator in Objective-C for OOP practice. I was getting input for doubles via scanf() and to get the input, I used %f for formatting then put it in a double variable. For some reason it would always read the input odd. I don't know what was going on but when I changed all of the types to int, it worked out perfectly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一场信仰旅途 2025-01-02 05:22:43

double 的 scanf() 格式为 "%lf"

printf() 可以对 floatdouble 使用相同的 "%f" 格式,因为 可变参数函数的 float 参数被提升为 doublescanf() 没有此类提升,因为您传递的是指针,并且内存中需要有一个实际的 floatdouble 对象。

The scanf() format for double is "%lf".

printf() can use the same "%f" format for both float and double, because float arguments to variadic functions are promoted to double. There's no such promotion for scanf() because you're passing a pointer, and you need to have an actual float or double object in memory.

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