不难你写不出来?main() {char *s,*p=s;scanf("%s",s);while(*s!='\0'){if(*s>='a'&&*s<='z') *s=*s-32;else if(*s>='A'&&*s<='Z') *s=*s+32;s++;}printf("%s",p);}