public class java1224 {
2 Z' x6 u0 }( @0 m1 K) @; q( k' v
8 d& F+ Z; h* M4 f public void main(String[]arg){
& o* ]2 _0 V, b; G; p! m, P int r[]=new int[42];! Z1 M7 R" d+ P0 ^
for(int i=0;i<42;i++)
$ B. B1 P$ d, [* t1 W {
3 T, ^% ]8 [! ~% O) S. O3 W r[i]=i+1;
5 i6 b8 `# r0 J4 J( v }' Y" p' J' @ A0 l C
for(int i=0;i<42;i++); V$ B# S5 @7 X
{4 e5 |& t3 r" q9 U2 T, [
int rr=(int)(Math.random()*42);" _/ I9 h. n0 ?+ {2 Y$ S3 U+ ^
int t=r[i];/ t3 M' o- n, d: }) p% \
r[i]=r[rr];$ a* }, l. n( e U& O; i& j7 |' s9 j
r[rr]=t;
5 N$ W, r3 e9 d/ t. ^+ H }4 V/ x# e8 i! k
for(int i=0;i<6;i++)' ]; L* V0 Z8 B4 p
{
8 w/ g ?8 T9 h //System.out.println("第"+(i+1)+"個號碼"+r[i]);
7 `9 j% t; [8 u9 {' w System.out.printf("第%d個號碼:%02d",i+1,r[i]);
; Y3 x2 Y; ^( C; z2 z% ^ }
. U4 j8 g; T) ^! u //System.out.println("特別號:"+r[6]);
{. L- p# [: n, y% U5 R* D System.out.printf("特別號:%02d\n",r[6]);
& j. k5 ]' h- `1 V }6 J- x- j8 s6 s; r/ e, J1 S
" x5 a0 ~2 o E% N% S, ^% f
} |