C语言库sinh()函数

#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@
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐