6.0s1/test.c

11 lines
191 B
C
Raw Normal View History

2024-06-07 06:27:27 +08:00
#include "6.0s1.h"
int main(void) {
2024-06-07 06:53:21 +08:00
S1_INT p = read_int();
2024-06-07 06:27:27 +08:00
write_int(p);
write_char('\n');
read_pnl();
2024-06-07 06:53:21 +08:00
S1_CHAR q = read_char();
2024-06-07 06:27:27 +08:00
write_char(q);
write_char('\n');
}