添加 test.c

This commit is contained in:
rabix 2024-06-07 06:27:27 +08:00
parent 371d646208
commit afbfe7c09b
1 changed files with 11 additions and 0 deletions

11
test.c Normal file
View File

@ -0,0 +1,11 @@
#include "6.0s1.h"
int main(void) {
int p = read_int();
write_int(p);
write_char('\n');
read_pnl();
int q = read_char();
write_char(q);
write_char('\n');
}