使用递归在 C# 中发现某个数的幂


若要发现某个数的幂,首先设置数字和幂 −

int n = 15;
int p = 2;

现在创建一个方法,并传入这些值 −

static long power(int n, int p) {
   if (p != 0) {
      return (n * power(n, p - 1));
   }
   return 1;
}

在上面,递归调用为我们提供了结果 −

n * power(n, p - 1)

以下是获取某个数幂的完整代码 −

示例

 在线演示

using System;
using System.IO;
public class Demo {
   public static void Main(string[] args) {
      int n = 15;
      int p = 2;
      long res;
      res = power(n, p);
      Console.WriteLine(res);
   }
   static long power(int n, int p) {
      if (p != 0) {
         return (n * power(n, p - 1));
      }
      return 1;
   }
}

输出

225

更新于: 2020 年 6 月 22 日

193 次浏览

启动您的 职业

通过完成课程来获得认证

开始
广告