-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Binary_Exponentiation.c
65 lines (55 loc) · 1019 Bytes
/
Binary_Exponentiation.c
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// C Program to find Binary Exponent Iteratively and Recursively.
#include <stdio.h>
// Iterative function to calculate exponent.
int binExpo_iterate(int a, int b)
{
int res = 1;
while (b > 0)
{
if (b % 2)
{
res = res * a;
}
a = a * a;
b /= 2;
}
return res;
}
// Recursive function to calculate exponent.
int binExpo_recurse(int a, int b)
{
if (b == 0)
{
return 1;
}
int res = binExpo_recurse(a, b / 2);
if (b % 2)
{
return res * res * a;
}
else
{
return res * res;
}
}
// Main function
int main()
{
int a, b;
scanf("%d%d", &a, &b);
if (a == 0 && b == 0)
{
printf("Math Error");
}
else if (b < 0)
{
printf("Exponent must be Positive");
}
else
{
int resIterate = binExpo_iterate(a, b);
int resRecurse = binExpo_recurse(a, b);
printf("%d", resIterate);
printf("%d", resRecurse);
}
}