#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int main()
{
int j;
j=60;
system("color 0a");
system("cls");
printf("2:00");
Sleep(1000);
for(j=59;j>=10;j--){
system("cls");
printf("1:%d",j);
Sleep(1000);
}
for(j=9;j>=0;j--){
system("cls");
printf("1:0%d",j);
Sleep(1000);
}
for(j=59;j>=10;j--){
system("cls");
printf("0:%d",j);
Sleep(1000);
}
for(j=9;j>=0;j--){
system("cls");
printf("0:0%d",j);
Sleep(1000);
}
return 0;
}
C语言,两分钟倒计时2:00,1:59,1:58...
最新推荐文章于 2024-11-02 19:25:49 发布