簡體   English   中英

來自文件字符串的建議

[英]Suggestions with Strings from File

我正在嘗試從外部文件讀取。 我已經從文件中成功讀取,但是現在我有一個小問題。 該文件包含大約88個動詞。 這些動詞是這樣寫在文件中的:被毆打被毆打被變成成為...等等。

現在我需要幫助的是,我想要一個像程序這樣的測驗,其中只會出現動詞中的兩個隨機字符串,並且用戶必須填寫缺少的一個。 我想要一個而不是一個(“ ------”)。 我的英語不太好,所以希望你明白我的意思。

    System.out.println("Welcome to the programe which will test you in english verbs!");
    System.out.println("You can choose to be tested in up to 88.");
    System.out.println("In the end of the programe you will get a percentage of total right answers.");

    Scanner in = new Scanner(System.in);
    System.out.println("Do you want to try??yes/no");

    String a = in.nextLine();
    if (a.equals("yes")) {
        System.out.println("Please enter the name of the file you want to choose: ");

    } else {
        System.out.println("Programe is ended!");
    }



    String b = in.nextLine();
    while(!b.equals("verb.txt")){
        System.out.println("You entered wrong name, please try again!");
         b = in.nextLine();

    }
    System.out.println("How many verbs do you want to be tested in?: ");
    int totalVerb = in.nextInt();
    in.nextLine();


    String filename = "verb.txt";
    File textFile = new File(filename);
    Scanner input = new Scanner(textFile);

    for (int i = 1; i <= totalVerb; i++){



        String line = input.nextLine();

        System.out.println(line);
        System.out.println("Please fill inn the missing verb: ");
        in.next();
    }

    System.out.println("Please enter your name: ");
    in.next();

你可以做這樣的事情

import java.util.Scanner;
import java.io.*;

public class GuessVerb {

    public static void main(String[] args) throws IOException{

        Scanner in = new Scanner(System.in);
        System.out.println("Enter a file name: ");

        String fileName = in.nextLine();
        File file = new File(fileName);

        Scanner input = new Scanner(file);

        String guess = null;
        int correctCount = 0;

        while(input.hasNextLine()) {
            String line = input.nextLine();          // get the line

            String[] tokens = line.split("\\s+");    // split it into 3 word

            int randNum = (int)(Math.random() * 3);  // get a random number 0, 1, 2

            String newLine = null;                          // new line

            int wordIndex = 0;
            switch(randNum){                         // case for random number
                case 0: newLine = "------ " + tokens[1] + " " + tokens[2]; 
                            wordIndex = 0; break;
                case 1: newLine = tokens[0] + " ------ " + tokens[2]; 
                            wordIndex = 1; break;
                case 2: newLine = tokens[0] + " " + tokens[1] + " -------";
                            wordIndex = 2; break;
           }

           System.out.println(newLine);

           System.out.println("Please fill inn the missing verb: ");
           guess = in.nextLine();

           if (guess.equals(tokens[wordIndex])){
               correctCount++;
           }
        }
        System.out.println("You got " + correctCount + " right");
    }
}

以上是完整的運行程序。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM