Guest User

Untitled

a guest
Jan 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MathTester
  4. {
  5. class MainClass
  6. {
  7. public static void Main (string[] args)
  8. {
  9. double x = 1000000000;
  10. //int randvar = 500;
  11. while(x>0)
  12. {
  13. double randVar = 500;
  14. randVar = randVar/50;
  15. randVar = randVar + 300;
  16. randVar = randVar - 54;
  17. randVar = randVar*randVar;
  18. randVar = Math.Sqrt(randVar);
  19. x--;
  20. }
  21. }
  22. }
  23. }
Add Comment
Please, Sign In to add comment