C 常用内置函数
程序员文章站
2022-07-15 09:14:58
...
C 常用内置函数
- 非零为真
- ctype.h
// 是否大小写字母
isupper('a') // 0
isupper('A') // 非0
islower('a') // 非0
// 是否为字母 a-z A-Z
isalpha('-');0
// 字符是否为数字,或者传ascil码对应的是否为数字。
isdigit('9');
// 转换成大写
toupper('a') // A
- math.h
// 向上取整
ceil(98.1) // 99.0
ceil(-98.1) // -98.0
// 向下取整
floor(98.1) // 98
floor(-98.1) // -99
// 平方根
sqrt(9) // 3
// 幂运算
pow(5, 2) // 5^2 = 25
// 绝对值
abs(-98) // 98
- stdlib.h
随机数
// step1:设置随机的种子,传入无符号整型,一般与时间连用
srand(time(NULL))
// step:2取随机数
int num = rand();
// 退出
exit(0) // 正常退出,非零不正常
// 8背景色,E前景色
system("color 8E")
// 按任意键继续
system("pause")
// 清屏
system("cls")
// 关机
system("shutdown /r /t 180") // 180秒后关闭
// 取消
system("shutdown -a")