" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <windows.h>
#include <conio.h>
using namespace std;
int main()
{
cout<<"Nacisnij jakis klawisz by rozpoczac odliczanie: ";
getch();
system("cls");
int czas = 0;
for(;;)
{
++czas;
if(czas/60 < 10) cout<<"0";
cout<<czas/60<<":";
if(czas%60 < 10) cout<<"0";
cout<<czas%60;
Sleep(1000);
system("cls");
}
cout<<endl;
system("pause");
return 0;
}