一、字符串中小写字符转为大写
void lowerToupper(char *str) { while(*str) { if(*str >= 'a' && *str <= 'z') { *str -= 32; } str++; } *str = '