You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
540 B
C#

/*
* C# Program to Calculate the power exponent value
*/
using System;
class Program
{
static void Main()
{
double m, n;
Console.WriteLine("Enter the Number : ");
m = double.Parse(Console.ReadLine());
Console.WriteLine("Enter the Exponent : ");
n = double.Parse(Console.ReadLine());
double value1 = Math.Pow(m, n);
Console.WriteLine("Result : {0}", value1);
Console.ReadLine();
}
}
/*
Enter the Number : 2
Enter the Exponent :3
Result : 8