题目描述: 实现函数double Power(double base, int exponent),求base的exponent次方,不得使用库函数,同时不需要考虑大数问题 思路:本题的重点考察内容是代码的完整性,要综合考虑输入的合法性,边界值等等,同时也可以进行优化 实现一: public double Power(double base, int exponent){ double result = 1.0; for(int i = 0; i < exponent; i++){ result…
测试通过代码: package t0825; public class Power { public static void main(String[] args){ System.out.println(Power(2.5,3)); System.out.println(Power(0.00000001,3)); System.out.println(Power(0.00000001,-3)); System.out.println(Power(2,-3)); System.out.print…