Computer Science, asked by koro, 6 months ago

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 Anonymous
0

Answer:

def algoOne(A,B):

   for i in range(a):

               B =  B * B

    return B

Explanation:

Similar questions