I\'m trying to make an ArrayList that takes in multiple names that the user enters, until the word done is inserted but I\'m not really sure how.
ArrayList
done
String[] inputArray = new String[0]; do{ String input=getinput();//replace with custom input code newInputArray=new String[inputArray.length+1]; for(int i=0; i
untested code, take it with a grain of salt.