Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Calculate power of any number

C# Sharp Recursion : Exercise-15 with Solution

Write a program in C# Sharp to calculate the power of any number using recursion.

Pictorial Presentation:

C# Sharp Exercises: Calculate power of any number

Sample Solution:

C# Sharp Code:

using System;
public class RecExercise15
{
 
 public static void Main()
	{
    int bNum,pwr;
    int result;
    Console.Write("\n\n Recursion : Calculate power of any number :\n");
	Console.Write("------------------------------------------------\n");	
     
    Console.Write(" Input the base  value : ");
    bNum = Convert.ToInt32(Console.ReadLine());
     
    Console.Write(" Input the exponent : ");
    pwr = Convert.ToInt32(Console.ReadLine());
     
    result=CalcuOfPower(bNum,pwr);//called the function CalcuOfPower
     
    Console.Write(" The value of {0} to the power of {1} is : {2} \n\n",bNum,pwr,result);
	}

public static int CalcuOfPower( int x,int y)
 {
  if (y == 0)
   return 1;
  else
   return x * CalcuOfPower( x, y - 1 );
 }
}

Sample Output:

 Recursion : Calculate power of any number :                                                                  
------------------------------------------------                                                              
 Input the base  value : 2                                                                                    
 Input the exponent : 6                                                                                       
 The value of 2 to the power of 6 is : 64

Flowchart :

Flowchart: C# Sharp Exercises - Calculate power of any number

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a program in C# Sharp to get the reverse of a string using recursion.
Next: C# Sharp LINQ Exercises.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.