Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class SquareRoot
- {
- static void Main()
- {
- int number = 12345;
- Console.WriteLine(Math.Sqrt(number));
- double result = Math.Sqrt(number);
- double check = result * result;
- Console.WriteLine(check);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment