- Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSmallestMultiple.java
More file actions
Latest commit
31 lines (21 loc) · 557 Bytes
/
Copy pathSmallestMultiple.java
File metadata and controls
31 lines (21 loc) · 557 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
packagealgorithms;
/**
* 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.
* What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20?
*
* @author joeytawadrous
*/
publicclassSmallestMultiple {
publicstaticvoidmain(String[] args) {
smallestMultiple();
}
publicstaticvoidsmallestMultiple() {
intj = 100;
for(inti = 2; i < 11; i++) {
while(!(j % i == 0)) {
j++;
}
System.out.println(j);
}
}
}