PavelManahilov

Math Sqrt

Aug 26th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. using System;
  2.  
  3. class SquareRoot
  4. {
  5. static void Main()
  6. {
  7. int number = 12345;
  8. Console.WriteLine(Math.Sqrt(number));
  9. double result = Math.Sqrt(number);
  10. double check = result * result;
  11. Console.WriteLine(check);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment