Java Number Power pow2(double base, double power)

Here you can find the source of pow2(double base, double power)

Description

pow

License

Open Source License

Declaration

public static double pow2(double base, double power) 

Method Source Code

//package com.java2s;
/*// w w  w.  j a v a 2 s.c o m
 * The MIT License (MIT)
 *
 * Copyright (c) 2014 Sada Kurapati <sadakurapati@gmail.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

public class Main {
    public static double pow2(double base, double power) {
        double result = 1;
        while (power != 0) {
            if (power > 0) {
                --power;
                result *= base;
            } else {
                result /= base;
                ++power;
            }
        }
        if (result > Double.MAX_VALUE)
            System.out.println("Overflow");
        return result;
    }
}

Related

  1. pow(String str, int n)
  2. pow10(final int exponent)
  3. pow10(int degree)
  4. pow10(int n)
  5. pow16(float a)
  6. pow2(double num)
  7. pow2(double x, int n)
  8. pow2(final int a)
  9. pow2(final int n)