c++角度转化成弧度
时间: 2023-11-24 17:50:28 浏览: 340
C#语言源码角度度到弧度转换 (3).pdf
以下是C++实现角度转弧度的代码和步骤:
```cpp
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double degree, radian, pi;
pi = atan(1.0) * 4; // 计算圆周率
cout << "请输入角度值:";
cin >> degree;
radian = (degree * pi) / 180; // 角度转弧度公式
cout << degree << "度 = " << radian << "弧度" << endl;
return 0;
}
```
步骤:
1. 引入头文件iostream和cmath。
2. 定义变量degree、radian和pi,其中pi为圆周率,通过atan(1.0) * 4计算得到。
3. 提示用户输入角度值,并将其存储在变量degree中。
4. 使用角度转弧度公式将角度值转换为弧度值,存储在变量radian中。
5. 输出转换后的结果。
阅读全文