摘要: 1 static char *revers(char *s) 2 { 3 int len=strlen(s); 4 char *s2=(char *)malloc(sizeof(char)*(len+1)); 5 for(int i=len-1; i>=0; i--) 6 { 7 switch (s 阅读全文
posted @ 2020-10-28 11:22 天使不设防 阅读(394) 评论(0) 推荐(0) 编辑