码迷,mamicode.com
首页 > 其他好文 > 详细

C 库函数 – atan() - Break易站

时间:2020-07-13 21:23:06      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:地址   ret   com   区间   产生   define   ott   val   return   

[

C 库函数 - atan()
C 标准库 - <math.h>

描述

C 库函数 double atan(double x) 返回以弧度表示的 x 的反正切。

声明

下面是 atan() 函数的声明。


double atan(double x)

参数

x -- 浮点值。

返回值

该函数返回以弧度表示的 x 的反正切,弧度区间为 [-pi/2,+pi/2]。

实例

下面的实例演示了 atan() 函数的用法。


#include <stdio.h>

#include <math.h>



#define PI 3.14159265



int main ()

{

   double x, ret, val;

   x = 1.0;

   val = 180.0 / PI;



   ret = atan (x) * val;

   printf("%lf 的反正切是 %lf 度", x, ret);

   

   return(0);

}

让我们编译并运行上面的程序,这将产生以下结果:


1.000000 的反正切是 45.000000 度

C 标准库 - <math.h>

]
转载请保留页面地址:https://www.breakyizhan.com/c-3/19345.html

C 库函数 – atan() - Break易站

标签:地址   ret   com   区间   产生   define   ott   val   return   

原文地址:https://www.cnblogs.com/breakyizhan/p/13295664.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!