在 C 程序中不用乘法 (*) 和除法 (/) 操作符编写自己的幂函数


幂函数使用乘法计算,即 5n 是 5*5*5… 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

更新日期:08-Aug-2019

397 次浏览

开启你的职业生涯

完成课程获得认证

开始
广告