-1

我一直在尝试编写一个程序,该程序使用中的三角函数cmath,特别是。我知道这些函数使用弧度,所以我添加了但是程序仍然显示不正确的数字。这是一些代码。sin()cos()* pi / 180

    #include<iostream>
    #include<cmath>
    using namespace std;

    const double pi = 3.1415926;

    int main()
    {
        int x = 0;
        double d;
        for(int forl=0;forl < 10;forl++)
        {
           d = sin(50 / pi * 180);
           cout << d << endl;
           x += 5;
        }
        cin >> x;
        return 0;
    }

为什么此代码显示不正确的数字?

4

1 回答 1

5
sin(50 / pi * 180);

每次循环都使用完全相同的角度,因此您将打印 sin(50°) 十次。也许你的意思是

sin(x * pi / 180.0);
于 2013-07-30T14:57:11.403 回答