完结第三章

This commit is contained in:
lzy
2024-03-20 18:05:59 +08:00
parent 308c9753bb
commit c120650656
4 changed files with 286 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
int main()
{
int ch;
ch = getchar();
putchar(ch);
exit(0);
}