BufferedReader bf = new BufferedReader(new ImputStreamReader(System.in));
System.out.println("請輸入育產生之亂數:");
try{
String ss = bf.readLine();
int num = Integer.valueOf(ss);
int[] rnd = new int[num];
for(int i = 0; i < num; i++){
rnd[i] = (int)(Math.random()*1000);
for(int i1 = 1 ; i1 < num; i1++){
for(int j = 0; j < i; j++){
if(rnd[j] > rnd[i])
int t = rnd[j];
rnd[j] = rnd[i];
rnd[i] = t;
}for(int i2 = 0; i2 < num; i2++)
System.out.printf("%3d\t" + rnd[i]);
}
}
}catch(Exception e)
{
System.out.println("請輸入一個正整數");
}
}
}
複製代碼
作者: 許逸瑋 時間: 2012-9-3 23:02
Exception in thread "main" java.lang.Error: Unresolved compilation problems: 1 A5 ?3 J6 y' j" P3 x* @ ImputStreamReader cannot be resolved to a type/ v- ], A8 J1 W$ i6 k* C7 W
Syntax error on token "int", delete this token " F# a3 Y3 c& J8 E; e5 R t cannot be resolved to a variable & M y' {) e. v: K1 N t cannot be resolved to a variable 3 x0 e; e9 a- g$ M3 | 0 I4 V h) c' G4 i! f5 T. B at TQC103.main(TQC103.java:4)作者: ray 時間: 2012-9-5 23:24
Unresolved compilation problems: - n+ p! a! t" p. N' m- n& ]6 F
ImputStreamReader cannot be resolved to a type 0 b5 W+ U) W3 ?( j* N正確的寫法如下:$ d* `9 {2 }, _* ?, T% k
InputStreamReader !!