收起
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);else printf("others");
报告相同问题?