一.floor : 把一个小数向下取整 即就是如果数是2.2 ,那向下取整的结果就为2.000000
double floor( double x );
Calculates the floor of a value.
头文件: <math.h>
二.ceil:功能:把一个小数向上取整(类比floor)
double ceil(doube x)
Calculates the ceiling of a value.
头文件:#include<math.h>
另外 round函数
把浮点数四舍五入
double round(double x)
如:5.3->5
5.6->6
三.isalpha isupper islower toupper tolower五兄弟
头文件:ctype.h
isalpha()判断是不是字符
isupper()判断是不是大写字母
islower()判断是不是小写字母
toupper()小写字母转大写
tolower()大写字母转小写
四、sqrt pow 二兄弟
头文件:math.h
sqrt : square root 求平方根
double sqrt(double x) ;
pow:求次方
double pow(double x,double y) ;
返回x的y次方