c++程序sin()如何写?

要让VC++6.0输出sin(a)的值怎么写?a是角度,是可以任意写的角度。请各位大侠把源代码写给在下!谢谢!warningC4244:'=':conversionfro... 要让VC++6.0输出sin(a)的值怎么写?a是角度,是可以任意写的角度。
请各位大侠把源代码写给在下!谢谢!
warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
error C2065: 'cout' : undeclared identifier
error C2296: '<<' : illegal, left operand has type 'float'
error C2297: '<<' : illegal, right operand has type 'float'
error C2065: 'endl' : undeclared identifier
错了出现了以上内容!
展开
 我来答
__________鄭晟
推荐于2017-09-14 · TA获得超过2216个赞
知道小有建树答主
回答量:281
采纳率:100%
帮助的人:0
展开全部
头文件——math.h里面含sin()函数了。

只需在编译预处理行加上“#include<math.h>”,然后在直接调用sin()函数即可。例:

#include<iostream.h>
#include<math.h>

int main()
{
float x;
x=sin(0.19199);
cout<<x<<endl;
return 0;
}

你有加上 #include<iostream.h> ?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式