數值的整數次方

2021-08-17 14:56:36 字數 634 閱讀 2714

給定乙個double型別的浮點數base和int型別的整數exponent。求base的exponent次方。

思路

方法一:呼叫 double pow(double num, int pow)函式,cmath

方法二:形如y= y * x

方法三:位運算

1.全面考察指數的正負、底數是否為零等情況。

2.寫出指數的二進位制表達,例如13表達為二進位制1101。

3.舉例:10^1101 = 10^0001*10^0100*10^1000。

4.通過&1和》1來逐位讀取1101,為1時將該位代表的乘數累乘到最終結果。

#include#includeusing namespace std;

base = base * base;

exp = exp >> 1;

}return exponent < 0 ? 1.0/ans : ans;

}int main()

ans2 = exp < 0 ? 1.0/ans2 : ans2;

ans3 = power(num, exp);

cout

}

數值整數次方

題目 實現函式double power double base,int exponent 求base的exponent次方。不得使用庫函式,同時不需要考慮 大數問題。includebool equal double num1,double num2 double powerwithunsignede...

數值整數次方

題目 實現函式double power double base,int exponent 求base的exponent次方。不得使用庫函式,同時不需要考慮 大數問題。includebool equal double num1,double num2 double powerwithunsignede...

數值的整數次方

題目 實現函式double power double base,int exponent 求base的exponent次方。不得使用庫函式,同時不需要考慮大樹問題。這道題目有以下幾點需要注意 0的0次方是無意義的,非法輸入 0的負數次方相當於0作為除數,也是無意義的,非法輸入 base如果非0,如果...