我觉得我是对的啊
查看原帖
我觉得我是对的啊
117658
Space_Gold_Trash楼主2020/6/8 17:50
#include<bits/stdc++.h>
using namespace std;
void work(){
    char ch=getchar();
    if(ch=='\n')return;
    work();
    putchar(ch);
}
int main(){
    work();
}

传送门

2020/6/8 17:50
加载中...