gpt4 book ai didi

c++ - 从看似相同的计算中得到不同的输出

转载 作者:太空狗 更新时间:2023-10-29 19:40:29 25 4
gpt4 key购买 nike

谁能告诉我为什么第 9 行和第 11 行的计算看起来完全相同,但会产生两个不同的输出。我知道差别不大,但我使用这些值通过 OpenGL 绘制线条,差别很明显。

#include <iostream>
#include <cmath>

int main()
{
int ypos=400;

/// Output: 410.
std::cout << 400+(sin((90*3.14159)/180)*10) << std::endl;

ypos=ypos+(sin((90*3.14159)/180)*10);
/// Output: 409.
std::cout << ypos << std::endl;

return 0;
}

最佳答案

这是输出一个 float

 std::cout <<  400+(sin((90*3.14159)/180)*10) << std::endl;

但是这是输出一个整数,所以会被截断

std::cout << ypos << std::endl;

关于c++ - 从看似相同的计算中得到不同的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21863568/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com