返回列表 發帖

??

  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. }
複製代碼

Unresolved compilation problems:
" O( P! h' F* T( h: m/ i7 HImputStreamReader cannot be resolved to a type
  D( ~+ w+ K3 W6 U+ K: M% e# ~正確的寫法如下:
1 }* {& ^" w: [4 SInputStreamReader !!

TOP

Exception in thread "main" java.lang.Error: Unresolved compilation problems: 5 C7 G" ?. N2 x' s+ c* ~9 c
        ImputStreamReader cannot be resolved to a type: D  E4 k* A: u0 U' b5 r( X9 I! |$ x
        Syntax error on token "int", delete this token
4 k1 Q$ j" b: _) c, y; K+ a9 E9 v        t cannot be resolved to a variable9 G4 E% g4 @' c0 h+ B# C# z  g
        t cannot be resolved to a variable, f8 j, }5 [& L6 }! [$ j; S/ X

1 I9 k6 r( S8 y+ B        at TQC103.main(TQC103.java:4)

TOP

返回列表