Advertisement
RadoNeshev

MathApp

Mar 18th, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. using System;
  2.  
  3. class MathApp
  4. {
  5.     static void Main()
  6.     {
  7.         Console.WriteLine("Enter a number for square root: 12345");
  8.         double SqrtNumber = Math.Sqrt(12345);
  9.         Console.WriteLine("Square root of {0} is: {1}", 12345, SqrtNumber);
  10.     }
  11.  
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement