牛牛是一名数学爱好者,他正在研究幂函数。幂函数是指形如 f(x) = x^n 的函数,其中 x 是实数,n 是整数。牛牛希望你设计一个算法,实现计算幂函数的功能。 请你实现函数 double myPow(double x, int n),其中 x 是底数,n 是指数。函数应该返回 x 的 n 次幂的结果。
示例1
输入
2.00000,9
输出
512.00000
示例2
输入
2.00000,-2
输出
0.25000
备注:
-100.0 -2^31 n 是一个整数要么 x 不为零,要么 n 0-10^6
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ public double myPow (double x, int n) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ double myPow(double x, int n) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x double浮点型 # @param n int整型 # @return double浮点型 # class Solution: def myPow(self , x , n ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ public double myPow (double x, int n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ function myPow( x , n ) { // write code here } module.exports = { myPow : myPow };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x double浮点型 # @param n int整型 # @return double浮点型 # class Solution: def myPow(self , x: float, n: int) -> float: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ func myPow( x float64 , n int ) float64 { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ double myPow(double x, int n ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x double浮点型 # @param n int整型 # @return double浮点型 # class Solution def myPow(x, n) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ def myPow(x: Double,n: Int): Double = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ fun myPow(x: Double,n: Int): Double { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ public double myPow (double x, int n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ export function myPow(x: number, n: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ func myPow ( _ x: Double, _ n: Int) -> Double { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x double浮点型 * @param n int整型 * @return double浮点型 */ pub fn myPow(&self, x: f64, n: i32) -> f64 { // write code here } }
2.00000,9
512.00000
2.00000,-2
0.25000