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

数值的整数次方

时间:2016-12-09 10:26:30      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:exp   double   subject   pow   style   ase   tmp   return   esc   

题目描述

给定一个double类型的浮点数base和int类型的整数exponent。求base的exponent次方。
class Solution {
public:
    double Power(double base, int exponent) {
        double rt=1.0;
        int tmp=exponent;     
        
        if(exponent == 0 )return 1;
        if(exponent <0 ) tmp=(-exponent);
        
        for(int i=1;i<=tmp ;i++)
        {
            rt*=base;
        }
        
        if(exponent < 0 )
        {
            rt=(1/rt);
        }
        
        return rt;
    }
};

 

数值的整数次方

标签:exp   double   subject   pow   style   ase   tmp   return   esc   

原文地址:http://www.cnblogs.com/Berryxiong/p/6148437.html

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