1

我希望这能找到你。

我对 Java 和这个网站都很陌生。虽然这可能看起来很长,但我只需要两件事的帮助,所以请帮助,就像我说的我对这一切都是新手,所以越彻底越好。我必须做一个项目,我们必须将常规英语单词转换成猪拉丁语。我错过了我们的讲师想要添加的一些内容。他是我现在拥有的代码。

import java.util.Scanner;
public class PigLatin 
{
public static void main(String[] args) 
{
Scanner sc = new Scanner(System.in);
final String vowels = "aeiouAEIOU";
System.out.println("Enter your word.");
String word = sc.nextLine();
while (!word.equalsIgnoreCase("done"))
{
String beforVowel = "";
int cut = 0;
while (cut < word.length() && !vowels.contains("" + word.charAt(cut)))
{
beforVowel += word.charAt(cut);
cut++;
}
if (cut == 0)
{
cut = 1;
word += word.charAt(0) + "w";
}
System.out.println(word.substring(cut) + beforVowel + "ay");
System.out.println("Enter your word.");
word = sc.nextLine();
}
}
}

我似乎无法实现的代码是“如果单词没有元音,则打印“无效””,例如,如果我在此代码中输入 bcdfgh,它会读回 bcdfgh ay。但它应该说无效

我无法添加代码的另一件事是“如果第一个元音是“u”并且它之前的字母是“q”,那么“u”也会出现在单词的末尾。例如,如果我在此代码中输入有问题的内容,它会显示为 uestionqay。但我想让它说 estionquay。

谢谢,麻烦您了

4

1 回答 1

2

嘿,所以我为你编码了一些东西......

import java.util.Scanner;

public class PigLatin 
{
    public static void main(String[] args) 
    {
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter your word.");
        String word = "";
        word = sc.nextLine();
        do
        {
            if(word.length() > 0)
            {
                if(containsVowels(word.substring(0,1)))
                {
                    System.out.println(word+"way");
                }
                else
                {
                    if(containsVowels(word))
                    {
                        System.out.println(word.substring(1,word.length())+word.substring(0,1)+"ay");
                    }
                    else
                        System.out.println("INVALID");
                }
            }
            System.out.println("Enter your word.");
        }
        while(!((word = sc.nextLine()).equalsIgnoreCase("done")));
        sc.close();
    }

    public static boolean containsVowels(String word)
    {
        String[] vowels = {
                "a","e","i","o","u"
        };
        for(int i = 0; i < vowels.length; i++)
        {
            if(word.contains(vowels[i]) ||  word.contains(vowels[i].toUpperCase()))
                return true;
        }
        return false;
    }
}

这不能解决您的问题

“我无法添加代码的另一件事是“如果第一个元音是“u”,而它之前的字母是“q”,那么“u”也会出现在单词的末尾。”例如,如果我在此代码中输入问题,它显示 uestionqay。但我希望它说 estionquay。”

您必须自己尝试这样做:)我可以查看您所做的事情以查看它是否有效,但我希望看到您尝试一下。

于 2015-10-15T04:36:09.640 回答