c语言数学函数的介绍
C语言是一种计算机程序设计语言,它既具有高级语言的特点,又具有汇编语言的特点。下面是小编收集整理的语言数学函数的介绍,希望对您有所帮助!
c语言数学函数的介绍
1、函数名: abs
功 能: 求整数的绝对值
用 法: int abs(int i);
2、函数名: acos
功 能: 反余弦函数
用 法: double acos(double x);
3、函数名: asin
功 能: 反正弦函数
用 法: double asin(double x);
4、函数名: atan
功 能: 反正切函数
用 法: double atan(double x);
5、函数名: atan2
功 能: 计算Y/X的反正切值
用 法: double atan2(double y, double x);
6、函数名: cabs
功 能: 计算复数的`绝对值
用 法: double cabs(struct complex z);
7、函数名: ceil
功 能: 向上舍入
用 法: double ceil(double x);
8、函数名: cos功 能: 余弦函数
用 法: double cos(double x);
9、函数名: cosh
功 能: 双曲余弦函数
用 法: dluble cosh(double x);
10、函数名: div
功 能: 将两个整数相除, 返回商和余数
用 法: div_t (int number, int denom);
11、函数名: exp
功 能: 指数函数
用 法: double exp(double x);
12、函数名: fabs
功 能: 返回浮点数的绝对值
用 法: double fabs(double x);
13、函数名: floor
功 能: 向下舍入
用 法: double floor(double x);
14、函数名: fmod
功 能: 计算x对y的模, 即x/y的余数
用 法: double fmod(double x, double y);
15、函数名: labs
功 能: 取长整型绝对值
用 法: long labs(long n);
16、函数名: ldiv
功 能: 两个长整型数相除, 返回商和余数
用 法: ldiv_t ldiv(long lnumer, long ldenom);
17、函数名: log
功 能: 对数函数ln(x)
用 法: double log(double x);
18、函数名: log10
功 能: 对数函数log
用 法: double log10(double x);
19、函数名: modf
功 能: 把数分为指数和尾数
用 法: double modf(double value, double *iptr);
20、函数名: pow
功 能: 指数函数(x的y次方)
用 法: double pow(double x, double y);
21、函数名: pow10
功 能: 指数函数(10的p次方)
用 法: double pow10(int p);
22、函数名: sprintf
功 能: 送格式化输出到字符串中
用 法: int sprintf(char *string, char *farmat [,argument,...]);
23、函数名: sqrt
功 能: 计算平方根
用 法: double sqrt(double x);
24、函数名: sin
功 能: 正弦函数
用 法: double sin(double x);
25、函数名: sinh
功 能: 双曲正弦函数
用 法: double sinh(double x);
26、函数名: tan功 能: 正切函数
用 法: double tan(double x);
27、函数名: tanh
功 能: 双曲正切函数
用 法: double tanh(double x);
【c语言数学函数的介绍】相关文章: