Esiste comunque la possibilità di creare un ciclo per System.out.println ("...") e la lettura dei valori? Ad esempio, desidero fare questo:
System.out.println("Input the Executive's name: ");
String eName = input.nextLine();
System.out.println("Input the Executive's address: ");
String eAddress = input.nextLine();
System.out.println("Input the Employee's name: ");
String emName = input.nextLine();
System.out.println("Input the Employee's address: ");
String emAddress = input.nextLine();
Tuttavia, voglio farlo per volontari, personale, risorse umane e personale vario. Non voglio creare così tanti System.out.println e devo leggere tante variabili. C'è un modo per creare un loop o un array per renderlo più pulito e conciso?