if(ch>='a' && ch<='z')printf("%c",ch-32);else if(ch>='A' && ch<='Z')printf("%c",ch+32);else if(ch >= '0' && ch<='9')printf("%c",ch);elseprintf("others");