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

  • برمجة سي شارب
  • برمجة

Write a program in C# Sharp to calculate the power of any number using recursion. 
Test Data :
Input the base value : 5
Input the exponent : 3
Expected Output :
The value of 5 to the power of 3 is : 125

الأجوبة

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 );
 }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...