返回列表 發帖
  1.    
  2. import java.io.*;
  3.     import java.util.Date;

  4.     class TQC110{
  5.         String items[][];
  6.         long start, end;
  7.         Date d;
  8.         BufferedReader br;

  9.         public static void main(String args[]){
  10.             int total = args.length;
  11.             int pairs = total / 2;
  12.             TQC110 tte;
  13.             if(total != 0 && pairs != 0)
  14.             {
  15.                //get value from args..
  16.               String[][] tt = new String[pairs][2];
  17.               for(int i=0; i<pairs; i+=2){
  18.                       tt[i][0] = args[i];
  19.                       tt[i][1] = args[i+1];
  20.               }
  21.               tte = new TQC110(tt);
  22.             }else
  23.                   tte = new TQC110();
  24.             tte.start();
  25.         }

  26.         TQC110(){
  27.             items = new String[5][2];
  28.             items[0][0] = "電腦";
  29.             items[0][1] = "computer";
  30.             items[1][0] = "資料庫";
  31.             items[1][1] = "database";
  32.             items[2][0] = "語法";
  33.             items[2][1] = "syntax";
  34.             items[3][0] = "學校";
  35.             items[3][1] = "school";
  36.             items[4][0] = "假期";
  37.             items[4][1] = "vacation";
  38.             //make default value
  39.             br = new BufferedReader(new InputStreamReader(System.in));
  40.         }
  41.                   
  42.         TQC110(String[][] it){
  43.             items = it;
  44.             br = new BufferedReader(new InputStreamReader(System.in));
  45.         }
  46.                   
  47.         void start(){
  48.             String ans = "";
  49.             int correct = 0;      // 計算答對題數
  50.             d = new Date();
  51.             start = d.getTime();  // 開始答題時間
  52.             System.out.println("請將題目的中文詞彙翻譯成英文單字!");
  53.             System.out.println("輸入英文單字答案後請按Enter鍵:");
  54.             System.out.println("           ");
  55.             for(int j = 0; j < items.length ; j++)
  56.             {
  57.                 System.out.println("第" + (j + 1) + "題__ " + items[j][0]);
  58.                 try{
  59.                     ans = br.readLine();
  60.                 }
  61.                 catch(IOException ioexception){
  62.                     System.out.println(ioexception);
  63.                 }
  64.                 if(ans.equalsIgnoreCase(items[j][1])){
  65.                     correct+=1;
  66.                     System.out.println("答對了!");
  67.                     //count correct
  68.                     //ouput correct message
  69.                 }else{
  70.                                 System.out.println("答錯了! 正確答案是:" + items[j][1]);
  71.                     //ouput incorrect message
  72.                 }
  73.             }

  74.             d = new Date();
  75.             end = d.getTime();    // 結束答題時間
  76.             System.out.print("你使用了" + (end - start) / 1000L + "秒,  在");
  77.             System.out.println(items.length + "題中答對了" + correct + "題");
  78.         }
  79.     }
複製代碼
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

返回列表