delete pics to save space
This commit is contained in:
16
history_source/信息学奥赛一本通/1.6.2.5t.cpp
Normal file
16
history_source/信息学奥赛一本通/1.6.2.5t.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
#include<cstdio>
|
||||
using namespace std;
|
||||
void read()
|
||||
{
|
||||
char a=getchar();
|
||||
if(a=='!') return;
|
||||
read();
|
||||
printf("%c",a);
|
||||
}
|
||||
int main()
|
||||
{
|
||||
read();
|
||||
printf("\n");
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user