更新 test.c

This commit is contained in:
rabix 2024-06-07 06:53:21 +08:00
parent 95ba41bc32
commit e6a7546f3e
1 changed files with 2 additions and 2 deletions

4
test.c
View File

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