Files
ios2024/code/test/consoleIO_test1.c
Yi-Ting Shih 4912fe4736 Ytshih/hw2
2024-11-02 07:58:12 +08:00

10 lines
102 B
C

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