- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
Latest commit
29 lines (24 loc) · 509 Bytes
/
Copy pathMain.java
File metadata and controls
29 lines (24 loc) · 509 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
/*
@author: mc-es
Problem 3
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143 ?
Answer: 6857
*/
publicclassMain {
publicstaticvoidmain(String[] args) {
System.out.println("Answer: " + maxPrime(600851475143L));
}
publicstaticintmaxPrime(longnumber) {
inti = 2;
while (i * i <= number) {
if (number % i == 0) {
number /= i;
i = 2;
} else {
i++;
}
}
return (int) number;
}
}