Assembly language program to find the lcm of 4 numbers
Answers
Answered by
0
a=x;
b=y;
while(b!=0)
{
t=b;
b=a%b;
a=t;
}
gcd=a;
lcm=(x*y)/gcd;
#avi
Similar questions
Math,
5 months ago
Accountancy,
5 months ago
Science,
5 months ago
History,
11 months ago
Math,
11 months ago
Math,
1 year ago
Social Sciences,
1 year ago