为什么我不允许启动程序,它说:删除短语令牌。对不起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***);
}
}