數值的整數次方

2021-10-09 20:31:21 字數 705 閱讀 4574

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

保證base和exponent不同時為0

# coding:utf-8

class solution:

def power(self, base, exponent):

# write code here

temp = base # 0的0次方和0的負數次方無意義

if base == 0.0 and exponent <= 0:

return none

# 0的次方為0

if base == 0.0:

return 0

# 非0的次方為1

if exponent == 0:

return 1

# 當exponent大於0

if exponent > 0:

for i in range(exponent - 1):

temp *= base

return temp

# 當exponent小於0

if exponent < 0:

for i in range(-exponent - 1):

temp *= base

return 1.0/temp

結束!

數值整數次方

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