通过 scanf 输入时双打表现得很奇怪
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
double 的
scanf()
格式为"%lf"
。printf()
可以对float
和double
使用相同的"%f"
格式,因为可变参数函数的 float
参数被提升为double
。scanf()
没有此类提升,因为您传递的是指针,并且内存中需要有一个实际的float
或double
对象。The
scanf()
format for double is"%lf"
.printf()
can use the same"%f"
format for bothfloat
anddouble
, becausefloat
arguments to variadic functions are promoted todouble
. There's no such promotion forscanf()
because you're passing a pointer, and you need to have an actualfloat
ordouble
object in memory.