运行 ❯
获取
您的
网站
×
更改方向
更改主题,明暗
转至 Spaces
#include <iostream> #include <cmath> using namespace std; int main() { cout << atan(0.5) << "\n"; cout << atan(-0.5) << "\n"; cout << atan(5) << "\n"; cout << atan(-5) << "\n"; cout << atan(100) << "\n"; cout << atan(-100) << "\n"; return 0; }
0.463648
-0.463648
1.3734
-1.3734
1.5608
-1.5608