初学者,倒计时2分钟
编写的一个2分钟的倒计时。从2:00到0:00。拿出来给大家看看。#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int main()
{
int a,b,c;
a=2;
b=0;
c=0;
system("color 0a");
system("cls");
printf("%d:%d%d",a,b,c);
Sleep(1000);
for(a=1;a>=0;a--)
{
for(b=5;b>=0;b--)
{
for(c=9;c>=0;c--)
{
system("cls");
printf("%d:%d%d",a,b,c);
Sleep(1000);
}
}
}
system("pause");
return 0;
}