forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Binary_Exponentiation.java
49 lines (46 loc) · 1.26 KB
/
Binary_Exponentiation.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Java Program to find Binary Exponent Iteratively and Recursively.
import java.util.Scanner;
public class Binary_Exponentiation {
// Iterative function to calculate exponent.
public static int binExpo_iterate(int a, int b) {
int res = 1;
while (b > 0) {
if (b % 2 == 1) {
res = res * a;
}
a = a * a;
b /= 2;
}
return res;
}
// Recursive function to calculate exponent.
public static int binExpo_recurse(int a, int b) {
if (b == 0) {
return 1;
}
int res = binExpo_recurse(a, b / 2);
res = res * res;
if (b % 2 == 1) {
return res * a;
} else {
return res;
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
if (a == 0 && b == 0) {
System.out.println("Math error");
} else if (b < 0) {
System.out.println("Exponent must be Positive");
} else if (a == 0) {
System.out.println("0");
} else {
int resIterate = binExpo_iterate(a, b);
int resRecurse = binExpo_recurse(a, b);
System.out.println(resIterate);
System.out.println(resRecurse);
}
}
}