2020年12月24日
摘要: 1 定时操作: 1 #include <time.h> 2 void delay(int seconds) 3 4 { 5 6 clock_t start = clock(); 7 8 clock_t lay = (clock_t)seconds * CLOCKS_PER_SEC; 9 10 whi 阅读全文
posted @ 2020-12-24 09:12 杰瑞鼠 阅读(101) 评论(0) 推荐(0) 编辑