Computer Science, asked by tiyashadas369, 11 months ago

Assembly language program to find the lcm of 4 numbers

Answers

Answered by Anonymous
0

a=x;

b=y;

while(b!=0)

{

t=b;

b=a%b;

a=t;

}

gcd=a;

lcm=(x*y)/gcd;

#avi

Similar questions