數值的整數次方
題目描述
給定一個double型別的浮點數base和int型別的整數exponent。求base的exponent次方。
- 保證base和exponent不同時為0。
題目連結: 數值的整數次方
程式碼
/**
* 標題:數值的整數次方
* 題目描述
* 給定一個double型別的浮點數base和int型別的整數exponent。求base的exponent次方。
* 保證base和exponent不同時為0
* 題目連結:
* https://www.nowcoder.com/practice/1a834e5e3e1a4b7ba251417554e07c00?tpId=13&&tqId=11165&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking
*/
public class Jz12 {
public double Power(double base, int exponent) {
double result = 0;
if (exponent > 0) {
result = base;
while (exponent > 1) {
result *= base;
exponent--;
}
} else {
result = 1;
while (exponent <= -1) {
result /= base;
exponent++;
}
}
return result;
}
public static void main(String[] args) {
Jz12 jz12 = new Jz12();
System.out.println(jz12.Power(2, 3));
System.out.println(jz12.Power(2, -3));
}
}
【每日寄語】 時間永遠不會逆行,把握好每一個屬於自己的清晨。