1 point
Q6: What is the output of
following program for greatest
common divisor(Factor) GCD.
def ged(a,b):
if (b==0):
return a
else:
return god (b, atb)
GCD=gcd (1440, 408)
print ("GCD is: ")
print (GCD)
18
29
23
24
Answers
Answered by
0
Answer:
GCD is 24 will be the output of the following code
Similar questions