Java Number Power pow(long value, long pow)

Here you can find the source of pow(long value, long pow)

Description

pow

License

Apache License

Declaration

public static long pow(long value, long pow) 

Method Source Code

//package com.java2s;
/**/*w ww  . j  a va  2 s  .c o m*/
 * Copyright (C) 2007-2009 Alexis Kinsella - http://www.helyx.org - <Helyx.org>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    public static long pow(long value, long pow) {
        long tmpValue = 1;

        for (int i = 0; i < pow; i++) {
            tmpValue *= value;
        }

        return tmpValue;
    }
}

Related

  1. pow(int x, int y)
  2. pow(int[] arr, double p)
  3. pow(Integer a, Integer b)
  4. pow(long base, long exp)
  5. pow(long n, long pow)
  6. pow(Number x, Number exponent)
  7. pow(String str, int n)
  8. pow10(final int exponent)
  9. pow10(int degree)