一、大小写转换函数 使用头文件#include< ctype.h > 转小写tolower()转大写toupper() 注意使用头文件#include< ctype.h > 二、判断字符函数 使用头文件#include< cctype > isdigit(int c) ; // 判断是否为数字isalpha(int c) ; // 判断是否为a~z A~Zisalnum(int c) ; // 判断是否是数字或a~z A~Z 三、取绝对值函数 使用头文件#include< cmathe > abs()取绝对值函数