The numbers divisible by all five numbers must be multiples of the LCM (LCD) of the numbers,
which is 22 x 3 x 5 = 60.
There are 5 numbers: 240, 300, 360, 420, and 480.
---
There is also a C program that can be used to find these:
#include <stdio.h>
void main()
{
for (int i=200;i<=500;++i)
if (!((i%6)(i%4)(i%5)(i%3)(i%2))) printf("%d ",i);
printf("\n");
}
Copyright © 2026 eLLeNow.com All Rights Reserved.