C 库函数 - sinh()
C 语言教程
· 2019-02-23 07:44:17
描述
C 库函数 double sinh(double x) 返回 x 的双曲正弦。
声明
下面是 sinh() 函数的声明。
double sinh(double x)
参数
- x -- 浮点值。
返回值
该函数返回 x 的双曲正弦。
实例
下面的实例演示了 sinh() 函数的用法。
#include <stdio.h> #include <math.h> int main () { double x, ret; x = 0.5; ret = sinh(x); printf("%lf 的双曲正弦是 %lf 度", x, ret); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
0.500000 的双曲正弦是 0.521095 度
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Cyberwar
Kathleen Hall Jamieson / Oxford University Press / 2018-10-3 / USD 16.96
The question of how Donald Trump won the 2016 election looms over his presidency. In particular, were the 78,000 voters who gave him an Electoral College victory affected by the Russian trolls and hac......一起来看看 《Cyberwar》 这本书的介绍吧!