數值的整數次方

2021-08-29 20:46:32 字數 504 閱讀 6075

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

時間限制:1秒 空間限制:32768k 熱度指數:308608

考點:**的完整性

1.若底數為0,則其所有結果均為0

2.當指數為0,則底數除0之外,結果均為1

3.當指數為負,則結果指數為正的倒數

4.當指數為證,則可通過演算法,使時間複雜度為o(logn)

5.注意:其指數為int型,底數為double

class

solutionif(

(n%2)!=

0)if(exponent<0)

return

double(1

/v);

if(exponent==0)

return1;

return v;}}

;

數值整數次方

題目 實現函式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,如果...