how can I fill the two lists with corresponding elements in method fillArrayList the user must enter the values
import java.util.ArrayList;
import java.util.Scanner;
class Assignment1
{
public static void main(String[] args)
{
ArrayList<Integer> list1 = new ArrayList<Integer>();
ArrayList<Integer> list2 = new ArrayList<Integer>();
System.out.println("Enter your lists = ");
fillArrayList(list1,list2);
}
public static void fillArrayList(ArrayList<Integer> L1 ,ArrayList<Integer> L2 )
{
//don't know what to do here to fill two lists from the user , really need help
}

javascripttag? – home Oct 25 '12 at 7:57fillArrayListmethod is enough, and call it two times for two lists. So, your method should only fill 1 arraylist at a time. – Rohit Jain Oct 25 '12 at 8:15