bor

Noting the time

bor
Dec 27th, 2012
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <ctime>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main() {
  6.   double start = clock();
  7.   // Insert your code here
  8.   cout << (clock() - start) / CLOCKS_PER_SEC << endl;
  9.   return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment