java - Piglatin,难以理解如何在字符串中移动 '.'

标签 java string substring charat

我为计算机科学课编写的程序遇到了很大困难。我已经浏览并查看了学生在此处和其他网站上发布的其他程序,但我无法理解我做错了什么。我已经查看了 Java oracle 文档,但它并不适合我。

我的主要问题是嵌套部分 if 语句应该移动 '.'在单词后添加“ay”后到句子的末尾。申请尚未完成。在我学会如何解决这一步之后,我将继续研究句子中第一个单词的大写。我只是不明白为什么我在使用 .substring 和 .charAt 时遇到困难。

请解释一下答案。

    File input = new File ("elab.txt");
    File output = new File ("elab.out");

    //create Scanner
    Scanner in = new Scanner(input);

    //create writer
    PrintWriter out = new PrintWriter(output);

    //VariParty, Part 1
    int count = 0;//Simple counter
    String word;//Scanned word from text file, will be edited
    String original;//Original word, backed up from String "word" before edit
    String original1;//Used in consonants
    String sentence = "";//Declare full sentence

    /* What I will do is scan each word in the text document. The application will display
     * a number for each word for my visual learning pleasure. The counter will be //commented
     * out as to not cause any visual action for the complete application. 
     */


    while(in.hasNext()){//Star while
        word = in.next();//Scans individual word
        word = word.toLowerCase();
        count++;//adds to counter
        original = word.toLowerCase();
        original1 = word.toLowerCase();

        //VariParty, Part 2
        char fl = word.charAt(0);
        char fL = Character.toLowerCase(word.charAt(0));
        char endChar = word.charAt(word.length()-1);


        /* This vowel portion of the application will check each "word" and deduce if "ay"
         * should be added to the end of the word beginning with a vowel. Finally, the code
         * will build onto the sentence string to produce a sentence.
         */

        if (fl == 'a' || fl == 'e' || fl == 'i'|| fl == 'o' || fl == 'u'){//Start if
        word = word + "ay";
        System.out.println(count + " VOW) " + "\"" + original + "\"" + " to " + "\"" + word + "\"" + " ");
        out.print(word + " ");                      
        sentence = sentence + " " + word;           
        }//End if


        /* We will now work towards building a better sentence. Our sentence will not have the
         * audacity to place a period in the middle of the word! Our sentences shall forever be
         * properly defined with a punctuation mark at the end, unless it's an apostrophe.              
         */

            if(word.contains(".")){//Start nested if
                word = word.substring(0,word.length()-1);
                word = word + ".";
                System.out.println(count + " NES VOW) " + "\"" + original + "\"" + " to " + "\"" + word + "\"" + " ");
            }//End nested if


        /* Now we will move the word around and deal with the consonants
         * The else statement will build the proper word by moving the first
         * letter to the end of the sentence, then adding "ay" to the end.
         * The final line will be building onto the sentence string.
         */


        else{//Start else
            word = word.substring(1,word.length());
            original = word;
            word = word + fl + "ay";
            System.out.println(count + " CON) " + "\"" + original1 + "\"" + " to " + "\"" + word + "\"" + " ");
            out.print(word + " ");

            sentence = sentence + " " + word;

        }//End else 
    }//End While

    System.out.println(sentence);
    in.close();//Close Scanner
    out.close();//Close PrintWriter 

最佳答案

您应该做的第一件事是使您的程序可测试。

主要功能是将单词转换为piglatin。因此,您应该定义一个完全执行此操作的方法:

public static String translateWordToPigLatin(String word) {
    ....
    return ...;
}

然后,您应该编写另一个名为 PigLatinTest 的类,在其中测试此方法:

public class PigLatinTest {

    public static void main(String[] args) {
        testPigLatin("hello", "ellohay");
        testPigLatin("welcome", "ellcomeway");
        // Add more test cases here.
    }

    private static void testPigLatin(String english, String expectedPigLatin) {
        String actual = translateWordToPigLatin(english);
        if (!expectedPigLatin.equals(actual)) {
            throw new AssertionError("Expected \"" + expectedPigLatin + "\" for \"" + english + "\", got \"" + actual "\".");
        }
    }
}

translateWordToPigLatin 方法中,我调用了参数 word。这是“.”的强烈指示。不属于那里。因此,您真正应该做的是从该行中提取所有正确的单词,其中单词仅由字母组成。

下一个更大的方法应该称为translateLineToPigLatin(String line),在这个方法中,您应该:

  1. 从英文行的开头开始。
  2. 将字符复制到 Pig Latin 行,直到找到字母。
  3. 进一步扫描英文行,直到找不到字母。
  4. 第 2 步和第 3 步之间的文本是一个单词。
  5. 将该词转换为“ pig ”拉丁语。
  6. 将转换后的单词添加到 pig 拉丁语行中。
  7. 从上次停下的地方继续扫描英文行。

关于java - Piglatin,难以理解如何在字符串中移动 '.',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40513435/

相关文章:

java - 如何使用 Jquery 将多个值传递给 servlet

java - 如何使用EclipseLink为公共(public)接口(interface)下的独立实体声明接口(interface)描述符?

java - 图像/图形到形状

java - 方法覆盖与抽象方法

c++ - (C/C++) 从 txt 文件读取字符到数组时,fscanf_s 缺少整数参数错误

java - 如何用正则表达式替换字符串值

sql - 如何返回引号内的字符串

c# - 从字符串中提取温度

python - repr() 没有前导和尾随引号?

excel - 使用公式,从变量字符串中提取操作系统版本号