为什么在 C++ 中 pow(10,5) = 9,999

Why pow(10,5) = 9,999 in C++(为什么在 C++ 中 pow(10,5) = 9,999)
本文介绍了为什么在 C++ 中 pow(10,5) = 9,999的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

最近我写了一段代码:

const int sections = 10;

for(int t= 0; t < 5; t++){
   int i = pow(sections, 5- t -1);  
   cout << i << endl;
}

结果是错误的:

9999
1000
99
10
1

如果我只使用这个代码:

If i using just this code:

for(int t = 0; t < 5; t++){
    cout << pow(sections,5-t-1) << endl; 
}

问题不再发生:

10000
1000
100
10
1

有人给我解释一下吗?非常感谢!

Does anyone give me an explaination? thanks you very much!

推荐答案

由于浮点值的表示,pow(10.0, 5) 可能是 9999.9999999 或类似的东西.当您将其分配给被截断的整数时.

Due to the representation of floating point values pow(10.0, 5) could be 9999.9999999 or something like this. When you assign that to an integer that got truncated.

如果 cout << 看起来输出是四舍五入的,但我现在没有任何支持文件来证实这一点.

In case of cout << pow(10.0, 5); it looks like the output is rounded, but I don't have any supporting document right now confirming that.

编辑 2:由 BoBTFish 和 这个问题 证实了当 pow(10.0, 5) 直接在 cout 中使用时,会被四舍五入.

EDIT 2: The comment made by BoBTFish and this question confirms that when pow(10.0, 5) is used directly in cout that is getting rounded.

这篇关于为什么在 C++ 中 pow(10,5) = 9,999的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)