我不知道这是否正确,所以我需要你的意见。我有一组员工姓名。它将显示在控制台上,然后提示用户是否要插入另一个名称。该名称应添加到数组的末尾(索引 4),并将再次显示该数组,但已添加新名称。我怎么做?顺便说一句,这是我的代码。我被困住了。我什至不知道在那里写 null 是否有效。
public static void list() {
String[] employees = new String[5];
employees[0] = "egay";
employees[1] = "ciara";
employees[2] = "alura";
employees[3] = "flora";
employees[4] = null;
for(int i = 0; i < employees.length; i++) {
System.out.println(employees[i]);
}
}
public static void toDo() {
Scanner input = new Scanner(System.in);
System.out.println("What do you want to do?");
System.out.println("1 Insert");
int choice = input.nextInt();
if(choice == 1) {
System.out.print("Enter name: ");
String name = input.nextLine();