java insert into arraylist
ArrayList<Integer> str=new ArrayList<Integer>();
str.add(0);
str.add(1);
// Result = [0, 1]
str.add(1, 11);
// Result = [0, 11, 1]
java insert into arraylist
ArrayList<Integer> str=new ArrayList<Integer>();
str.add(0);
str.add(1);
// Result = [0, 1]
str.add(1, 11);
// Result = [0, 11, 1]
how to get a user to add to an arraylist in java
public class chores {
public static void main(String[] args) {
Boolean close = false;
ArrayList<String> name = new ArrayList();
ArrayList<String> chores = new ArrayList();
Scanner scanner = new Scanner(System.in);
System.out.println("Please enter '0'to exit");
System.out.println("Please enter name: ");
String answer = scanner.nextLine();
if (answer == "0") {
close = true;
System.out.println("Program has been terminated.");
}
else {
name.add(answer);
do {
System.out.println("Please enter chore: ");
answer = scanner.nextLine();
chores.add(answer);
System.out.println("Please enter name: ");
name.add(answer);
}while(answer != "0");
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us