摘要:
#include #include #include #include #include using namespace std;char s1[200];char s2[200];char *reverse(char *s){ if(s==NULL) return NULL; int end = strlen(s) -1; int begin = 0; ch... 阅读全文
摘要:
#include #include #include #include #include using namespace std;char s1[30];char s2[30];char s3[30];char *reverse(char *s){ if(s==NULL) return NULL; int end = strlen(s) -1; int begin ... 阅读全文