在C程序中无需使用乘法(*)和除法(/)运算符即可编写自己的Power

幂函数是使用5n乘以5 * 5 * 5…n的倍数来计算的。对于此功能,为了在不使用乘法(*)和除法(/)运算符的情况下正常工作,我们将使用嵌套循环,将循环次数加n。

示例

#include <iostream>
using namespace std;
int main() {
   int a= 4 , b = 2;
   if (b == 0)
      cout<<"The answer is"<<1;
   int answer = a;
   int increment = a;
   int i, j;
   for(i = 1; i < b; i++) {
      for(j = 1; j < a; j++) {
         answer += increment;
      }
      increment = answer;
   }
   cout<<"The answer is "<<answer;
   return 0;
}

输出结果

The answer is 16