0

プログラムの開始が許可されていない理由は、次のように表示されます:フレーズトークンを削除してください。noob Q で申し訳ありません (このフォーラムの最初の Q)

public class Pirma {

public static void main(String[] args) {

    String[] wordlistOne = {"ziaurus", "grazus", "baisus", "fainas"};
    String[] wordlistTwo = {"afigienas", "negeras", "idomus", "juokingas"};
    String[] wordlistThree = {"nekoks", "neidomus", "lameris", "kietas"};

    int oneLength = wordlistOne.length;
    int twoLength = wordlistTwo.length;
    int threeLength = wordlistThree.length;

    int rand1 = (int) (Math.random() * oneLength);
    int rand2 = (int) (Math.random() * twoLength);
    int rand3 = (int) (Math.random() * threeLength);

    ***String phrase*** = wordlistOne[rand1] + " " + wordlistTwo[rand2] + " " + wordlistThree[rand3];
    System.out.println("What we need is" + " " ***phrase***);
}
}
4

3 に答える 3

5

+と の間" "を忘れましたphrase

于 2013-07-08T21:56:59.360 に答える
3
***String phrase*** = wordlistOne[rand1] + " " + 
        wordlistTwo[rand2] + " " + wordlistThree[rand3];
System.out.println("What we need is" + " " ***phrase***);

これらすべてのアスタリスクのため、有効ではありません。それらを削除して、次のように追加+します。

String phrase = wordlistOne[rand1] + " " + wordlistTwo[rand2] + " " + wordlistThree[rand3];
    System.out.println("What we need is" + " " + phrase);

編集:コメントを読むと、アスタリスクは主に強調のためのようです。あなたのエラーはまだ と の+" "にありませんphrase

于 2013-07-08T21:57:23.827 に答える
1

試す:

    String phrase = wordlistOne[rand1] + " " + wordlistTwo[rand2] + " " + wordlistThree[rand3];
    System.out.println("What we need is " + phrase);
于 2013-07-08T21:58:58.993 に答える