char Getms();
取系统时间的 tick 数
1 tick = 1/256 秒,返回值的范围为 0~255
void main() { for (;;) { printf("\n%d", Getms()); getchar(); } getchar(); }