摘要: #include <stdio.h> void pailie(int n) { char next; if (n<=1) { next=getchar(); putchar(next); } else { next=getchar(); pailie(n-1); putchar(next); } } 阅读全文
posted @ 2021-06-02 09:28 myrj 阅读(325) 评论(0) 推荐(0) 编辑