求第100002個素數
2013-07-05 08:26:08 收藏
12
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
package
jianan;
public
class
_100002sushu
if
(a[k]*a[k]>i)
}
if
(x==
1
)
a[flag++]=i;
if
(flag==
100002
)
break
;
}
double
e = system.nanotime();
system.out.println(a[
100001
]+
"\n"
+(e-s)/math.pow(
10
,
9
)+
"s"
);
}
}
/*
1299743
0.479737766s
*/
java中計算程式執行的時間
long beforetime system.currenttimemillis long aftertime system.currenttimemillis long timedistance aftertime beforetime system.out.println timedistanc...
Java 計算程式執行時間
第一種 以ms為單位long starttime system.currenttimemillis 獲取開始時間的時間戳 中間為要計算執行時間的 段 long endtime system.currenttimemillis 獲取結束時間的時間戳 system.out.println endtime...
計算java程式執行時間
以毫秒為單位計算 偽 long starttime system.currenttimemillis 獲取開始時間 dosomething 測試的 段 long endtime system.currenttimemillis 獲取結束時間 以納秒為單位計算 偽 long starttime sys...