Write an algorithm to compute AB
(A powers to B, where A and B are Integer variables) using the
looping technique.....C language
Answers
Answered by
0
Answer:
def algoOne(A,B):
for i in range(a):
B = B * B
return B
Explanation:
Similar questions