返回列表 發帖

110參考

import java.io.*;
import java.util.Date;

class TQC110
{
    String items[][];
    long start, end;
    Date d;
    BufferedReader br;

    public static void main(String args[])
    {
        int total = args.length;
        int pairs = total / 2;
        TQC110 tte;
        if(total != 0 && pairs != 0)
        {
           //get value from args....
                                                tte = new TQC110(tt);
        }
        else
                        tte = new TQC110();
        tte.start();
    }

    TQC110()
    {
        items = new String[5][2];
                                //make default value
        br = new BufferedReader(new InputStreamReader(System.in));
    }
               
                TQC110(String[][] it)
    {
        items = it;
        br = new BufferedReader(new InputStreamReader(System.in));
    }
               
    void start()
    {
        String ans = "";
        int correct = 0;      // 計算答對題數
        d = new Date();
        start = d.getTime();  // 開始答題時間
        System.out.println("請將題目的中文詞彙翻譯成英文單字!");
        System.out.println("輸入英文單字答案後請按Enter鍵:");
        System.out.println("           ");
        for(int j = 0; j < items.length ; j++)
        {
            System.out.println("第" + (j + 1) + "題__ " + items[j][0]);
            try
            {
                ans = br.readLine();
            }
            catch(IOException ioexception)
            {
                System.out.println(ioexception);
            }
            if(ans.equalsIgnoreCase(items[j][1]))
            {
                //count correct
                //ouput correct message
            } else
            {
                //ouput incorrect message
            }
        }

        d = new Date();
        end = d.getTime();    // 結束答題時間
        System.out.print("你使用了" + (end - start) / 1000L + "秒,  在");
        System.out.println(items.length + "題中答對了" + correct + "題");
    }
}

返回列表