文章
145
粉丝
217
获赞
25
访问
91.8k
#include <stdio.h> #include <string.h> int main() { char s[201]; while(gets(s) != NULL) { char *p = s; while(*p) p++; p--; while(p >= s) printf("%c",*p--); printf("\n"); } return 0; }
登录后发布评论
暂无评论,来抢沙发