C 数学函数


数学函数

还有一个可用的数学函数列表,可让您对数字执行数学任务。

要使用它们,您必须包含math.h头文件在你的程序中:

#include <math.h>

平方根

要查找数字的平方根,请使用sqrt()功能:

示例

printf("%f", sqrt(16));
亲自试一试 »

对数字进行四舍五入

这个ceil()函数将数字向上舍入到最接近的整数,并且floor()方法将数字向下舍入到最接近的整数,并返回结果:

示例

printf("%f", ceil(1.4));
printf("%f", floor(1.4));
亲自试一试 »

力量

这个pow()函数返回值X的力量yXy):

示例

printf("%f", pow(4, 3));
亲自试一试 »

其他数学函数

其他流行数学函数的列表(来自<math.h>库)可以在下表中找到:

Function Description
abs(x) Returns the absolute value of x
acos(x) Returns the arccosine of x
asin(x) Returns the arcsine of x
atan(x) Returns the arctangent of x
cbrt(x) Returns the cube root of x
cos(x) Returns the cosine of x
exp(x) Returns the value of Ex
sin(x) Returns the sine of x (x is in radians)
tan(x) Returns the tangent of an angle