using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace Csharp_MathClass
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("\n Returns a specified number raised to the specified power");
double pow = Math.Pow(25, 25);
Console.WriteLine("\n {0}", pow);
Console.WriteLine("\n Rounds a decimal value to the nearest integral value.");
double round = Math.Round(35.68743);
Console.WriteLine("\n {0}", round);
Console.WriteLine("\n Returns the smaller of two numbers.");
double Min = Math.Min(44, 49);
Console.WriteLine("\n {0}", Min);
Console.WriteLine("\n Returns the Maximum of two numbers.");
double Max = Math.Max(40, 70);
Console.WriteLine("\n {0}", Max);
Console.WriteLine("\n Returns rounds the given value to the nearest larger integer.");
double Cell = Math.Ceiling(33.47);
Console.WriteLine("\n {0}",Cell);
Console.WriteLine("\n provides absolute of given value.");
Console.WriteLine("\n {0}",Math.Abs(34.4));
Console.WriteLine("\n {0}",Math.Abs(-34.4));
Console.WriteLine("\n {0}",Math.Abs(0));
Console.WriteLine("\n provides Cosine value for given radians");
Console.WriteLine("\n {0}", Math.Cos(30));
Console.WriteLine("\n It gives the Sin value of given input.");
Console.WriteLine("\n {0}", Math.Sin(22));
Console.WriteLine("\n It gives the Tan of given input.");
Console.WriteLine("\n {0}", Math.Tan(14));
Console.WriteLine("\n gives the exponential of given value");
Console.WriteLine("\n {0}", Math.Exp(5.4));
Console.WriteLine("\n It gives the square root of given input.");
Console.WriteLine("\n {0}", Math.Sqrt(64));
Console.ReadKey();
}
}
}