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

12 lines
101 B
C

#include "syscall.h"
int main()
{
int n;
for (n=15;n<=19;n++){
PrintInt(n);
}
return 0;
}