#include <cctype> (ctype.h)这是一样的;
1.isalnum()判断是不是字母或者数字;
2.isalpha()判断是不是字母;
3.isdigit()判断是不是(0到9)数字;
4.islower()判断是不是小写字母;
5.isupper()判断是不是大写字母;
6.tolower()将大写字母转换为小写字母;
7.toupper()将小写字母转换为大写字母;
#include <cctype> (ctype.h)这是一样的;
1.isalnum()判断是不是字母或者数字;
2.isalpha()判断是不是字母;
3.isdigit()判断是不是(0到9)数字;
4.islower()判断是不是小写字母;
5.isupper()判断是不是大写字母;
6.tolower()将大写字母转换为小写字母;
7.toupper()将小写字母转换为大写字母;