输入一个以#结束的字符串,本题要求将小写字母全部转换成大写字母,把大写字母全部转换成小写字母,其它字符不变。
输入格式:
输入在一行中给出一个长度不超过40的、以#结束的非空字符串。
输出格式:
在一行中按照要求输出转换后的字符串。
输入样例:
Hello World! 123#
输出样例:
hELLO wORLD! 123
程序:
#include
#include
#define STRING_SIZE 40
int main(void) {
int i = 0;
char str[STRING_SIZE + 1];
gets(str);
while(str[i] != '#') {
if(islower(str[i]))
str[i] = toupper(str[i]);
else if(isupper(str[i]))
str[i] = tolower(str[i]);
++i;
}
str[i] = '\0';
printf("%s\n", str);
return 0;
}