大小写转换

Problem Description

X现在要学习英文以及各种稀奇古怪的字符的了。现在他想把一串字符中的小写字母变成大写字符,大写字母变成小写字母,其他的保持不变。

Input

 输入有多组。
每组输入一个字符串,长度不大于80,不包含空格。

Output

 输出转换后的字符串

Example Input

A*
B+

Example Output

a*
b+
 
   
#include
int main() {     int i;     char a[81];     while(gets(a))     {         for(i=0;a[i]!='\0';i++)     {         if(a[i]>='a'&&a[i]<='z')         {             a[i] = a[i] - 32;             printf("%c",a[i]);         }         else if(a[i]>='A'&&a[i]<='Z')         {             a[i] = a[i] + 32;             printf("%c",a[i]);         }         else         {             a[i] = a[i];             printf("%c",a[i]);         }     }     printf("\n");     }     return 0; }

你可能感兴趣的:(大小写转换)