當前位置:首頁 » 編程軟體 » 編程計時

編程計時

發布時間: 2024-07-30 13:53:36

c語言倒計時器 的編程代碼

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void wait ( int seconds )
{
clock_t endwait;
endwait = clock () + seconds * CLK_TCK ;
while (clock() < endwait) {}
}

void main(){
int t,m,s;
printf("input counterdown time in seconds\n");
scanf("%d",&t);
printf("\n===================\n");
while(1)
{
wait ( 1 );
t--;
if (t==0) break;
s = t % 60;
m = t / 60;
printf("\r\t%02d:%02d",m,s);
}
exit(0);
};

熱點內容
ios離線緩存目錄 發布:2024-11-07 02:43:17 瀏覽:844
在b站怎麼上傳視頻手機 發布:2024-11-07 02:38:53 瀏覽:990
foxmail存儲路徑 發布:2024-11-07 02:34:18 瀏覽:371
英魂之刃英雄資料庫 發布:2024-11-07 02:31:06 瀏覽:316
永久性掛載的配置文件在哪個目錄 發布:2024-11-07 02:31:06 瀏覽:719
閱讀賺錢源碼 發布:2024-11-07 02:26:11 瀏覽:418
脫式演算法的脫 發布:2024-11-07 02:21:02 瀏覽:298
安卓哪裡下載mt4 發布:2024-11-07 02:19:27 瀏覽:366
armlinux嵌入式開發 發布:2024-11-07 02:18:36 瀏覽:764
安卓系統哪個可以看書 發布:2024-11-07 02:18:35 瀏覽:873