C++ Count Down Timer (CCDT)


C++ Countdown Timer

Source Code:

#include <iostream.h>
#include <conio.h>
#include <windows.h>

/**
*bundet.com
*C++ Count Down Timer
*/

void main()
{
int i;
for(i=60;i>=0;i--)
{
    cout<<i;
    Sleep(200);
    clrscr();
}
exit(i==0);

getch();
}

Hope this is useful & happy learning!


Post a Comment

Previous Next

نموذج الاتصال