c++的几个内置函数
islower(char c) :是否为小写字母
isupper(char c): 是否为大写字母
isdigit(char c) :是否为数字
isalpha(char c) :是否为字母
isalnum(char c): 是否为字母或者数字
toupper(char c): 字母小转大
tolower(char c) :字母大转小
to_string(int i):int转string
islower(char c) :是否为小写字母
isupper(char c): 是否为大写字母
isdigit(char c) :是否为数字
isalpha(char c) :是否为字母
isalnum(char c): 是否为字母或者数字
toupper(char c): 字母小转大
tolower(char c) :字母大转小
to_string(int i):int转string