Files
afs2026-hw1/code/test/consoleIO_test1.c
施羿廷 b582884995 HW1
2026-04-02 22:50:58 +08:00

10 lines
97 B
C
Executable File

#include "syscall.h"
int main() {
int n;
for (n = 9; n > 5; n--)
PrintInt(n);
Halt();
}