c++中如何使用正弦和余弦?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++中如何使用正弦和余弦?相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h>
#include<algorithm>
#include<math.h>
using namespace std;
int main()
double a=sin(1);
double b=cos(1);
cout<<a<<" "<<b;
以上是关于c++中如何使用正弦和余弦?的主要内容,如果未能解决你的问题,请参考以下文章