Guest User

Untitled

a guest
Jan 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. include <cmath>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main ()
  6. {
  7. double incr = 1000000000;
  8. double randVar = 100;
  9. while (incr > 0)
  10. {
  11. randVar = randVar/50;
  12. randVar = randVar + 300;
  13. randVar = randVar - 54;
  14. randVar = randVar*randVar;
  15. randVar = sqrt(randVar);
  16. incr = incr - 1;
  17. }
  18. }
Add Comment
Please, Sign In to add comment