answersLogoWhite

0


Best Answer

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");

}

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
User Avatar

Akash Ilawala

Lvl 1
2y ago
what is the actual answer
More answers
User Avatar

Toby

Lvl 2
3y ago

2

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

456,256

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In all how many numbers from 200 to 500 are divisible by all of the following 2 3 4 5 6?
Write your answer...
Submit
Still have questions?
magnify glass
imp