返回列表 發帖

??

  1. import java.io.BufferedReader;
  2. public class TQC103 {
  3.         public static void main(String[] args) {
  4.         BufferedReader bf = new BufferedReader(new ImputStreamReader(System.in));
  5.         System.out.println("請輸入育產生之亂數:");
  6.         try{
  7.                 String ss = bf.readLine();
  8.                 int num = Integer.valueOf(ss);
  9.                 int[] rnd = new int[num];
  10.                 for(int i = 0; i < num; i++){
  11.                         rnd[i] = (int)(Math.random()*1000);
  12.                         for(int i1 = 1 ; i1 < num; i1++){
  13.                                 for(int j = 0; j < i; j++){
  14.                                         if(rnd[j] > rnd[i])
  15.                                         int t = rnd[j];
  16.                                         rnd[j] = rnd[i];
  17.                                         rnd[i] = t;
  18.                                 }for(int i2 = 0; i2 < num; i2++)
  19.                                 System.out.printf("%3d\t" + rnd[i]);
  20.                         }
  21.                 }
  22.         }catch(Exception e)
  23.         {
  24.                 System.out.println("請輸入一個正整數");
  25.         }

  26.         }
  27. }
複製代碼

Exception in thread "main" java.lang.Error: Unresolved compilation problems:
& f( \# \+ x* J2 h6 j& B        ImputStreamReader cannot be resolved to a type' I; R# e1 d9 X' s% y( Q3 x
        Syntax error on token "int", delete this token3 a8 t. b6 ]) G  u1 A6 m
        t cannot be resolved to a variable# Y0 \& R% v# N/ z; {. l$ z
        t cannot be resolved to a variable6 I+ c  [% p" y' O" D: k
' s/ w" p& q; w; S
        at TQC103.main(TQC103.java:4)

TOP

Unresolved compilation problems:
1 l1 L& i8 l# H( V+ A% oImputStreamReader cannot be resolved to a type" ?8 s, |0 |, X6 v* z$ A7 q+ C
正確的寫法如下:7 V" f5 ?( W1 r: g. m7 P. H+ P
InputStreamReader !!

TOP

返回列表