#include stdio.h#include math.hint main () {double x, ret;x = 0.5;ret = sinh(x);printf(The hyperbolic sine of %lf is %lf degrees, x, ret);
编程学习网为您整理以下代码实例,主要实现:C语言库sinh()函数,希望可以帮到各位朋友。
#include <stdio.h>
#include <math.h>
int main () {
double x, ret;
x = 0.5;
ret = sinh(x);
printf("The hyperbolic sine of %lf is %lf degrees", x, ret);
return(0);
}
@H_403_3@