码迷,mamicode.com
首页 > 其他好文 > 详细

《剑指Offer》题目:数值的整数次方

时间:2017-06-10 20:20:10      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:ati   java   str   次方   one   情况   public   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》题目:数值的整数次方

标签:ati   java   str   次方   one   情况   public   offer   代码   

原文地址:http://www.cnblogs.com/weekend/p/6979640.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!