Advertisement
kuruku

FindSquareRoot

Apr 14th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. using System;
  2.  
  3. //Create a console application that calculates and prints the square root of the number 12345.
  4. //Find in Internet “how to calculate square root in C#”.
  5.  
  6. class FindSquareRoot
  7. {
  8.     static void Main()
  9.     {
  10.         Console.WriteLine(Math.Sqrt(12345));
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement