题目描述:
问题描述
编写一个程序,输入一个字符串(长度不超过20),然后把这个字符串内的每一个字符进行大小写变换,即将大写字母变成小写,小写字母变成大写,然后把这个新的字符串输出。
输入格式:输入一个字符串,而且这个字符串当中只包含英文字母,不包含其他类型的字符,也没有空格。
输出格式:输出经过转换后的字符串。
输入输出样例
样例输入
AeDb
样例输出
aEdB
代码如下:
#include <cstdio>
using namespace std; int main(void)
{
char ch[+];
scanf("%s",&ch);
for (int i= ; ch[i]!='\0' ; i ++)
{
if (ch[i]>='a' && ch[i]<='z')
ch[i] -= 'a'-'A';
else if (ch[i]>='A' && ch[i]<='Z')
ch[i] += 'a'-'A';
}
printf("%s\n",ch);
return ;
}
C++解法
解题思路:
1.确定字符为大写还是小写字母
2.做相应转换