<math.h>
头文件中。double cosh(double x);
#include <stdio.h> #include <math.h> int main() { double value = 1.0; double result; // 计算1.0的双曲余弦值 result = cosh(value); printf("cosh(%f) = %f\n", value, result); return 0; }输出结果为:
cosh(1.0) = 1.543081
本文链接:http://task.lmcjl.com/news/5031.html