29 lines
762 B
C#
29 lines
762 B
C#
|
/*
|
||
|
* C# Program to Perform Multiplication of Exponents of Same Base
|
||
|
*/
|
||
|
using System;
|
||
|
class Program
|
||
|
{
|
||
|
static void Main()
|
||
|
{
|
||
|
Console.WriteLine("Enter the Base : ");
|
||
|
double num = double.Parse(Console.ReadLine());
|
||
|
Console.WriteLine("Enter the First Exponent :");
|
||
|
double exp1 = double.Parse(Console.ReadLine());
|
||
|
Console.WriteLine("Enter the Second Exponent :");
|
||
|
double exp2 = double.Parse(Console.ReadLine());
|
||
|
double mul;
|
||
|
mul = exp1 + exp2;
|
||
|
Console.WriteLine("Result is : {0}^{1} : {2}", num, mul, Math.Pow(num, mul));
|
||
|
Console.ReadLine();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Enter the Base :
|
||
|
2
|
||
|
Enter the First Exponent :
|
||
|
3
|
||
|
Enter the Second Exponent :
|
||
|
2
|
||
|
Result is : 2^5 : 32
|