The greatest common multiple of any set of integers is infinite.
Chat with our AI personalities
The greatest factors of A, B, and C, respectively, are the absolute values of A, B, and C. The greatest common factor of A, B, and C is 1.
LCM(8, C, A) = 8*C*A.
The following code for example is a solution (you could do it with less variables, but this is more readable):int GCD(int a, int b){int n, k, c;n = (a>b)?a:b;k = (a>b)?b:a;while (k){c = n%k;n=k;k=c;}return n;}
b 108
If the greatest common factor/divisor of A and B is 1 then they are coprime - they do not share any prime factors. Multiplying both through by C means, obviously, that each number now divides by C. In fact, C is their greatest common divisor, since AC and BC do not have further common factors after C is taken out. Hence the GCF of AC and BC is not merely a factor of C - it is C. (The question makes sense only if A, B and C are integers.)