《剑指Offer》题目:数值的整数次方
Posted VictorWei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《剑指Offer》题目:数值的整数次方相关的知识,希望对你有一定的参考价值。
题目描述:数值的整数次方
给定一个double类型的浮点数base和int类型的整数exponent。求base的exponent次方。
题目分析:
题目的关键在于要考虑exponent为负数的情况。
Java代码:
public class Power { public static double power(double base, int exponent) { double res = 1.0; if(exponent == 0){ return 1.0; } if(exponent > 0){ for(int i=0; i<exponent; ++i){ res *= base; } } if(exponent < 0){ double absExponent = Math.abs(exponent); for(int i=0; i<absExponent; ++i){ res *= base; } res = 1/res; } return res; } public static void main(String[] args){ System.out.println(power(2,-3)); } }
以上是关于《剑指Offer》题目:数值的整数次方的主要内容,如果未能解决你的问题,请参考以下文章