我是一个java初学者,我写了这段代码:
class Friends {
public static void main(String[] args) {
String[] facebookFriends = { "John", "Joe", "Jack", "Lucy", "Bob", "Bill", "Sam", "Will" };
int x = 0;
while (x <= 8) {
System.out.println("Frind number " + (x + 1) + " is " + facebookFriends[x]);
x++;
}
System.out.println("");
if (facebookFriends.length < 5) {
System.out.println("Where are all you're friends?");
}
else if (facebookFriends.length == 5) {
System.out.println("You have a few friends...");
}
else {
System.out.println("You are very sociable!");
}
}
}
当我运行程序时,它会正确读取名称,但不会显示任何文本,例如“你有几个朋友......”或“你很善于交际!” 此外,当我运行它时,它在第三个和第四个名称之间显示“线程“主”java.lang.ArrayIndexOutOfBoundsException:8 中的异常”。我不知道我的代码有什么问题,但如果有人能告诉我问题,我将不胜感激。谢谢你。