Nieuws

String user [] = new String [num]; // This line creates a String array named user with a size of num. This array will hold the names entered by the user. for (int i = 0; i < num; i++) { // it prompts ...
// (1) WAP to take array input from the user and print the elements.