我一直在尝试编写一个程序,该程序使用中的三角函数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;
}
为什么此代码显示不正确的数字?