What does "while a <> b" mean in pseudo-code?
In the assignment, we must use a specific algorithm to find the largest common divisor in the assembly written in the assembly.
The algorithm is as follows:
Input:a,b
Local: c
While a <> b
While a > b
c = a - b
a = c
End While
While b > a
c = b - a
b = c
End While
End While
At this point, GCD(a,b)=a=b.
What does a <b> mean in the third line?
+3