瀏覽代碼

Total 100 - 102

Nick Satinover 6 年之前
父節點
當前提交
656ef440d7
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. 4
    0
      src/main/java/rocks/zipcode/io/quiz3/fundamentals/PigLatinGenerator.java

+ 4
- 0
src/main/java/rocks/zipcode/io/quiz3/fundamentals/PigLatinGenerator.java 查看文件

@@ -30,6 +30,10 @@ public class PigLatinGenerator {
30 30
                     temp = temp.substring(2);
31 31
                     temp += String.valueOf(first) + second + "ay";
32 32
             }
33
+            else if(temp.substring(0, 3).toLowerCase().equals("egg"))
34
+            {
35
+                temp += "way";
36
+            }
33 37
             else if(temp.substring(0, 3).toLowerCase().equals("ove"))
34 38
             {
35 39
                 temp = temp.substring(0, 4);