數值的整數次方

2022-03-16 11:18:41 字數 473 閱讀 8115

題目描述

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

分析計算機中對於浮點型變數是存在誤差的,所以判斷base是否為0可以根據在乙個足夠小的區間內。對付exponent是負數時,將base = 1 / base。然後進行迭代

public

double

power_2

(double base,

int exponent)

if(base >=

-0.000001

&& base <=

0.000001

)double num =

1.0;

if(exponent >0)

}else

num =

1.0/ num;

}return num;

}

數值整數次方

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