Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3.  
  4. using namespace std;
  5.  
  6. int tick, ms, sekundy, minuty, godziny;
  7. tick=0;
  8. int main ()
  9. {
  10.     while (tick=<356400000)
  11.     Sleep(1);
  12.     tick++;
  13.     if (tick==100)
  14.     tick=0;
  15.     cout<<tick;
  16.     //Godziny
  17.     //Minuty
  18.     //Sekundy
  19.     //MS
  20.    
  21. }
  22.  
  23. return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement