摘要: 练习2-1 /* 倒计时后显示程序运行时间 */ #include <time.h> #include <stdio.h> /* 等待x毫秒 */ int sleep(unsigned long x) { clock_t c1 = clock(), c2; do { if ((c2 = clock( 阅读全文
posted @ 2019-12-04 01:16 nightswatch-candle 阅读(608) 评论(0) 推荐(0)