JavaAlgorithms/Maths/Pow.java

27 lines
681 B
Java
Raw Permalink Normal View History

2020-01-29 00:18:15 +08:00
package Maths;
2019-10-23 21:42:04 +08:00
2020-10-24 18:23:28 +08:00
// POWER (exponentials) Examples (a^b)
2019-10-23 21:42:04 +08:00
public class Pow {
2020-10-24 18:23:28 +08:00
public static void main(String[] args) {
assert pow(2, 0) == Math.pow(2, 0); // == 1
assert pow(0, 2) == Math.pow(0, 2); // == 0
assert pow(2, 10) == Math.pow(2, 10); // == 1024
assert pow(10, 2) == Math.pow(10, 2); // == 100
}
2019-10-23 21:42:04 +08:00
2020-10-24 18:23:28 +08:00
/**
* Returns the value of the first argument raised to the power of the second argument
*
* @param a the base.
* @param b the exponent.
* @return the value {@code a}<sup>{@code b}</sup>.
*/
public static long pow(int a, int b) {
long result = 1;
for (int i = 1; i <= b; i++) {
result *= a;
2019-10-23 21:42:04 +08:00
}
2020-10-24 18:23:28 +08:00
return result;
}
2019-10-23 21:42:04 +08:00
}