有关字符串转换(大写转换为小写,小写换大写)

#include"stdio.h"
main()
{
int i;
char a;
int c='a'-'A';
printf("大小写转换/n输入要转换的字母串:/n");
while(scanf("%c",&a)!=EOF)
{
if(a>='a'&&a<='z')//检测如果是小写则执行下一句,如果是大写则执行else
{
a=a-c;
printf("%c",a);
}
else//如果检测是大写则执行这里
{
a=a+c;
printf("%c",a);
}
}

}  

你可能感兴趣的:(c)