(Choose 1 answer)
Given the Euclidean algorithm to find the greatest common divisor of two positive integers ^
procedure GCD(a, b: positive integers)
x= a
y:= b
while y > 0
begin
r: = x mod y
x: = y y:= r
end
{UCLN(a, b) = x}
How many divisions are used to find GCD(201, 111)?
A. 8
B. 5
C. 7
D. 6
E. None of the other choices is correct
<
vat fini
Finish
Exll
16