实现函数 double Power(double base, int exponent),求base的exponent次方。 注意: 1.保证base和exponent不同时为0。 2.不得使用库函数,同时不需要考虑大数问题 3.有特殊判题,不用考虑小数点后面0的位数。 数据范围: , ,保证最终结果一定满足 进阶:空间复杂度 ,时间复杂度
示例1
输入
2.00000,3
输出
8.00000
示例2
输入
2.10000,3
输出
9.26100
示例3
输入
2.00000,-2
输出
0.25000
说明
2的-2次方等于1/4=0.25
加载中...
import java.util.*; public class Solution { public double Power(double base, int exponent) { } }
class Solution { public: double Power(double base, int exponent) { } };
# -*- coding:utf-8 -*- class Solution: def Power(self, base, exponent): # write code here
class Solution { public double Power(double thebase, int exponent) { // write code here } }
function Power(base, exponent) { // write code here } module.exports = { Power : Power };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param base double浮点型 # @param exponent int整型 # @return double浮点型 # class Solution: def Power(self , base: float, exponent: int) -> float: # write code here
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param base double浮点型 * @param exponent int整型 * @return double浮点型 */ func Power( base float64 , exponent int ) float64 { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param base double浮点型 * @param exponent int整型 * @return double浮点型 */ double Power(double base, int exponent ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # @param base double浮点型 # @param exponent int整型 # @return double浮点型 # class Solution def Power(base, exponent) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param base double浮点型 * @param exponent int整型 * @return double浮点型 */ def Power(base: Double,exponent: Int): Double = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param base double浮点型 * @param exponent int整型 * @return double浮点型 */ fun Power(base: Double,exponent: Int): Double { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param base double浮点型 * @param exponent int整型 * @return double浮点型 */ public double Power (double base, int exponent) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param base double浮点型 * @param exponent int整型 * @return double浮点型 */ export function Power(base: number, exponent: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param base double浮点型 * @param exponent int整型 * @return double浮点型 */ func Power ( _ base: Double, _ exponent: Int) -> Double { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param base double浮点型 * @param exponent int整型 * @return double浮点型 */ pub fn Power(&self, base: f64, exponent: i32) -> f64 { // write code here } }
2.00000,3
8.00000
2.10000,3
9.26100
2.00000,-2
0.25000