Advertisement
Lauda

Untitled

Mar 13th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #include <iostream>
  2. #include <time.h>
  3. #include <thread>
  4. #include <cmath>
  5.  
  6. using namespace std;
  7. using namespace chrono;
  8.  
  9. int main()
  10. {
  11.     system_clock::time_point pocetak = system_clock::now();
  12.     srand(time(NULL));
  13.     cout << rand() % 1000 << endl;
  14.  
  15.     system_clock::time_point kraj = system_clock::now();
  16.     duration<double> sec = kraj - pocetak;
  17.  
  18.     cout << "blaa " << sec.count() << " sekundi" << endl;
  19.  
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement