输入一个以#结束的字符串,本题要求将小写字母全部转换成大写字母,把大写字母全部转换成小写字母,其它字符不变。
输入格式:
输入在一行中给出一个长度不超过40的、以#结束的非空字符串。
输出格式:
在一行中按照要求输出转换后的字符串。
输入样例:Hello World! 123#输出样例:
hELLO wORLD! 123
源代码:
#include <stdio.h>
int main (){
char ch;
do{
ch=getchar();
if(ch<=‘z‘&&ch>=‘a‘){
printf("%c",ch-32); //小写转大写
}else if(ch<=‘Z‘&&ch>=‘A‘){
printf("%c",ch+32); //大写转小写(‘A‘的ASCII码值是65,而‘a‘是97)
}else if(ch==‘#‘){
printf("\n"); //对输入结束的处理
}else{
printf("%c",ch); //其他不变输出
}
}while(ch!=‘#‘);
return 0;
}
每一步需要自己考虑完整:)
原文地址:http://www.cnblogs.com/emochuanshuo/p/3840757.html