c语言三角函数

#include<stdio.h>#include<math.h>intmain(){doublea;a=sin(45);printf("f%",a);}为什么不能显示4... #include<stdio.h>
#include<math.h>
int main()
{
double a;
a=sin(45);
printf("f%",a);
}为什么不能显示45度角的对边比斜边??显示的是f
谁能帮我找出其中的问题? 反三角函数 应该怎么写?
展开
 我来答
世镶柳009
2009-02-24 · TA获得超过3017个赞
知道答主
回答量:2928
采纳率:0%
帮助的人:2467万
展开全部
要用弧度计算的,另外,pintf语句中,应该是"%lf",不是"f%"

sin()是三角函数,参数使用的是弧度,不是度。

asin()才是反三角函数。

资料 :

NAME
asin, asinf, asinl - arc sine function

SYNOPSIS
#include <math.h>

double asin(double x);
float asinf(float x);
long double asinl(long double x);

Link with -lm.

DESCRIPTION
The asin() function calculates the arc sine of x; that is the value
whose sine is x. If x falls outside the range -1 to 1, asin() fails
and errno is set.

RETURN VALUE
The asin() function returns the arc sine in radians and the value is
mathematically defined to be between -PI/2 and PI/2 (inclusive).
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
rqzhong
推荐于2017-09-01 · TA获得超过271个赞
知道小有建树答主
回答量:191
采纳率:50%
帮助的人:89.3万
展开全部
帮你更正一下:
int main()
{
const double pi=3.14; //定义pi的值
double a;
a=sin(45*pi/180); //角度转化为弧度
printf("%f",a); //printf的正确格式
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友6606ac94b
2009-02-24 · TA获得超过1151个赞
知道小有建树答主
回答量:1331
采纳率:0%
帮助的人:1265万
展开全部
应该是printf("%f",a);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式