Guest User

Untitled

a guest
Jul 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <iostream>
  2. #include <thread>
  3.  
  4. int main()
  5. {
  6. double stuff = 1.2;
  7. int junk = 2;
  8.  
  9. for (unsigned long int i=0; i < 100000000; i++)
  10. {
  11. for (unsigned long int j=0; j < 100000000; j++)
  12. {
  13. stuff *= 1.3;
  14. stuff += 2.2;
  15.  
  16. junk *= 2;
  17. junk += 2;
  18. }
  19. }
  20.  
  21. std::cout << stuff << std::endl;
  22. std::cout << junk << std::endl;
  23.  
  24. return 0;
  25. }
Add Comment
Please, Sign In to add comment