Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class SquareRoot
- {
- static void Main()
- {
- Console.Write("The square root of 12345 is: ");
- Console.WriteLine(Math.Sqrt(12345));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement