forked from joeyajames/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Primes.java
79 lines (71 loc) · 2.03 KB
/
Primes.java
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// version 1
public class Primes {
public static void main(String[] args) {
int max = 10;
for (int x = 2; x <= max; x++) {
boolean isPrime = true;
for (int y = 2; y < x; y++)
if (x % y == 0)
isPrime = false;
if (isPrime)
System.out.println(x);
}
}
}
//--------------------------------------------
// version 2: break
public class Primes {
public static void main(String[] args) {
int max = 10;
for (int x = 2; x <= max; x++) {
boolean isPrime = true;
for (int y = 2; y < x; y++)
if (x % y == 0) {
isPrime = false;
break;
}
if (isPrime)
System.out.println(x);
}
}
}
//--------------------------------------------
// version 3: break, add to list
import java.util.ArrayList;
public class Primes {
public static void main(String[] args) {
ArrayList<Integer> primeList = new ArrayList<>();
int max = 10000;
for (int x = 2; x <= max; x++) {
boolean isPrime = true;
for (int y = 2; y < x; y++)
if (x % y == 0) {
isPrime = false;
break;
}
if (isPrime)
primeList.add(x);
}
System.out.println(primeList);
}
}
//--------------------------------------------
// version 4: break, add to list, square root
import java.util.ArrayList;
public class Primes {
public static void main(String[] args) {
ArrayList<Integer> primeList = new ArrayList<>();
int max = 200000;
for (int x = 2; x <= max; x++) {
boolean isPrime = true;
for (int y = 2; y < Math.sqrt(x); y++)
if (x % y == 0) {
isPrime = false;
break;
}
if (isPrime)
primeList.add(x);
}
System.out.println(primeList);
}
}