Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- //Create a console application that calculates and prints the square root of the number 12345.
- //Find in Internet “how to calculate square root in C#”.
- class FindSquareRoot
- {
- static void Main()
- {
- Console.WriteLine(Math.Sqrt(12345));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement