Tagged Questions
The lcm tag has no wiki summary.
20
votes
5answers
12k views
Least common multiple for 3 or more numbers
How do you calculate the least common multiple of multiple numbers?
So far I've only been able to calculate it between two numbers. But have no idea how to expand it to calculate 3 or more numbers.
...
5
votes
6answers
2k views
C++ algorithm to calculate least common multiple for multiple numbers
Is there a C++ algorithm to calculate the least common multiple for multiple numbers, like lcm(3,6,12) or lcm(5,7,9,12)?
4
votes
4answers
2k views
How to find GCF, LCM on a set of numbers
What would be the easiest way to calculate Greatest Common Factor, Least Common Multiple on a set of numbers. What math functions can be used to find this information
4
votes
2answers
286 views
How can I optimize my C / x86 code?
int lcm_old(int a, int b) {
int n;
for(n=1;;n++)
if(n%a == 0 && n%b == 0)
return n;
}
int lcm(int a,int b) {
int n = 0;
__asm {
lstart:
inc n;
...
3
votes
8answers
5k views
Finding the LCM of a range of numbers
I read an interesting DailyWTF post today, "Out of All The Possible Answers..." and it interested me enough to dig up the original forum post where it was submitted. This got me thinking how I would ...
1
vote
2answers
62 views
How to get GCD and LCM of a range of numbers efficiently?
I currently use this code to find gcd and lcm
def gcd(a, b):
while b != 0:
a, b = b, a%b
return a
def lcm(a, b):
result = a*b/gcd(a,b)
return result
But what if I want to ...
0
votes
1answer
162 views
GCD and LCM relation
The following relation works only for two (3, 12) numbers, it fails to produce the right answer when used for three numbers (3,12,10) . Just wondering if is it my understanding or it is just for two ...
0
votes
3answers
436 views
LCM of two numbers
I am getting wrong result for my LCM program.
Ifirst find gcd of the numbers and then divide the product with gcd.
int gcd(int x, int y)
{
while(y != 0)
{
int save = y;
y = x % y;
x ...
0
votes
4answers
237 views
How to dereference multiple void pointers in structs into 1 piece of memory?
I am working on a project where I need to send over a certain IPC stack, (in my case, LCM), and the thing is I need to provide the IPC a variable length struct. I have
struct pack1 {int value1; int ...
-1
votes
2answers
166 views
How to find Least Common Multiple (LCM) for two numbers
I have used Euclid's method to find the L.C.M for two numbers.
l.c.m=a*b/(gcd(a,b))
How can I do this without using this algorithm?
I have an idea of first getting all factors of these two numbers ...
-3
votes
1answer
434 views
LCM of an array of numbers [closed]
Can someone help me out with writing a C++ code to find the lcm of an array of numbers.
Thanks in advance,
Arun