Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不是 C++ 开发人员,但今天我找到了一个 C++ 代码并尝试理解它。所以我堆积了这段代码:
int m = 2, n = 3, i = 1; double mid = (double)m / n * i; int d = (int)mid + 1; printf("%d %d\n", mid, d);
将打印到控制台的结果是:1431655765 1071994197。这似乎与将变量 m 转换为 double 有关,但我不知道它是如何发生的。我需要有人帮助我理解它。提前致谢!
您应该打印一个带有格式说明符的 double( mid) in 。%lfprintf
mid
%lf
printf
将 printf 更改为
printf("%f %i\n", mid, d);
实际上会打印您期望的内容,即 0.666667 1
一个更简单的解决方法是
double m_Doubled; m_Doubled = static_cast(m);