本文概述
- C数学函数
C数学函数math.h头文件中有多种方法。下面给出了math.h头文件的常用功能。
序号 | 功能 | 描述 |
---|---|---|
1) | ceil(number) | 四舍五入给定的数字。它返回大于或等于给定数字的整数值。 |
2) | floor(number) | 舍入给定的数字。它返回小于或等于给定数字的整数值。 |
3) | sqrt(number) | 返回给定数字的平方根。 |
4) | pow(base, exponent) | 返回给定数字的幂。 |
5) | abs(number) | 返回给定数字的绝对值。 |
【c数学函数】让我们看一下math.h头文件中找到的数学函数的简单示例。
#include<
stdio.h>
#include <
math.h>
int main(){
printf("\n%f", ceil(3.6));
printf("\n%f", ceil(3.3));
printf("\n%f", floor(3.6));
printf("\n%f", floor(3.2));
printf("\n%f", sqrt(16));
printf("\n%f", sqrt(7));
printf("\n%f", pow(2, 4));
printf("\n%f", pow(3, 3));
printf("\n%d", abs(-12));
return 0;
}
输出:
4.000000
4.000000
3.000000
3.000000
4.000000
2.645751
16.000000
27.000000
12
推荐阅读
- c中的结构体
- c字符串测试1
- c strstr()函数
- c strupr()函数
- c strlwr()函数
- c strrev()函数
- c strcmp()函数
- c strcat()函数
- c strcpy()函数