-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountPrime.java
39 lines (34 loc) · 893 Bytes
/
countPrime.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
public class countPrime {
public int countPrimes(int n) {
if (n < 2){
return 0;
}
int result = 0;
for (int i = 2; i < n; i++){
if (isPrimes(i)){
result++;
}
}
return result;
}
public boolean isPrimes(int num){
for (int i = 2; i <= Math.sqrt(num); i++){
if (num % i == 0){
return false;
}
}
return true;
}
public static long time;
public static void main(String[] args){
countPrime num = new countPrime();
for(int i=10000;i<=100000;i+=10000){
long a =System.nanoTime();
System.out.println("the number of prime is"+num.countPrimes(i));
long b =System.nanoTime();
time= b-a;
System.out.println("the step is :"+i);
System.out.println("the time is"+time);
}
}
}