Guest User

Untitled

a guest
Jan 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <math.h>
  2. #include <stdio.h>
  3.  
  4. void main()
  5. {
  6. double incr = 1000000000;
  7. while(incr > 0)
  8. {
  9. float rand;
  10. rand = 500;
  11. rand = rand + 300;
  12. rand = rand - 54;
  13. rand = rand*rand;
  14. rand = sqrt(rand);
  15. incr = incr - 1;
  16.  
  17. }
  18. }
Add Comment
Please, Sign In to add comment