int LCM3 (int a, int b, int c)
{
return LCM2 (a, LCM2 (b, c));
}
int LCM2 (int a, int b)
{
return a*b/GCD2(a, b);
}
75
The three integers are 25, 26, and 27.
The largest is 73.
-19, -21, -23
Write a program to find the number and sum of all integers from 100 to 300 that are divisible by 11
9240 is the product of the three consecutive integers 20, 21, and 22.
-3,-4,-5
They are 28, 29 and 30.
16+18+20= 54
The integers are 11, 13 and 15.
The integers are 16, 17 and 18.
The integers are 19, 20 and 21.