经典面向样例编程 char findTheDifference(char* s, char* t) { if(s==NULL) { return t[0]; } for(int x=0;x<strlen(s);x++) { for(int y=0;y<strlen(t);y++) { if(s[x]==t[y]) { t[y]='1'; break; } } } for(int x=0;x<strlen(t);x++) { if(t[x]!='1') { return t[x]; } } return NULL; }