char* replaceSpace(char* s ) { //判空--保证代码的健壮性 if(s==NULL) return NULL; int count=0; int i=0; int j=0; &n...