数值的整数次方
Posted alittlecomputer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数值的整数次方相关的知识,希望对你有一定的参考价值。
给定一个double类型的浮点数base和int类型的整数exponent。求base的exponent次方。
思路:
使用循环求。
1 public class Solution { 2 public double Power(double base, int exponent) { 3 if(exponent>0){ 4 double dou = 1.0; 5 for(int i = 0;i<exponent;i++){ 6 dou = dou * base; 7 } 8 return dou; 9 } 10 else if(exponent == 0){ 11 return 1; 12 } 13 else { 14 double doub = 1.0; 15 for(int j = 0; j<-exponent;j++){ 16 doub = doub * base; 17 } 18 return 1/doub; 19 } 20 } 21 }
以上是关于数值的整数次方的主要内容,如果未能解决你的问题,请参考以下文章