#includevoid fun(){ char c; if ((c = getchar()) != '\n') fun(); putchar(c);}int main(){ fun(); return 0;}
此处是函数的递归调用,类似于栈后进先出