Advertisement
ivelin_m

SquareRoot

Mar 9th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. using System;
  2.  
  3. class SquareRoot
  4. {
  5. static void Main()
  6. {
  7. Console.Write("The square root of 12345 is: ");
  8. Console.WriteLine(Math.Sqrt(12345));
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement