推介:| Web Hosting | 外賣系統 | Server colocation | Web Shop System | Makeup course |

查看完整版本: 這個Java程式出現了什麼問題

花之慶次 2008-8-22 18:01

這個Java程式出現了什麼問題

import java.io.*;
class Sample5_10
{
   public static void main(String args[])throws IOException
   {
      System.out.println("請輸入成績(1~5) ");
     [color=red] BufferedReder br=new BufferedReader(new InputStreamReader(System.in));
[/color]      String str=br.readLine();
      int res=Integer.parseInt(str);
      switch(res)
      {
          case 1:
          case 2:
              System.out.println("還要再加強!!!");
              break;
          case 3:
          case 4:
              System.out.println("就這樣保持下去!!!");
              break;
          case 5:
              System.out.println("你太優秀了 ");
              break;
          default:
              System.out.println("請輸入1~5的成績 ");
              break;
       }
   }
}

紅字部份出了什麼問題??

jayzhou_2046 2008-8-22 22:13

回復 1# 的帖子

小弟相信 BufferedReder 應該是BufferedReader
頁: [1]
查看完整版本: 這個Java程式出現了什麼問題