I need to read in 10 integers into an ArrayList and then have to program sort them into two groups: "Positive Integers" and "Negative Integers".
I have two ArrayLists and an if statement to determine where each integer should go, however I do not know what variable to use in order to make this work. Here is what I have so far:
import java.util.*;
public class Sort {
public static void main (String [] args) {
ArrayList<Integer> pos = new ArrayList<Integer>();
ArrayList<Integer> neg = new ArrayList<Integer>();
Scanner sc = new Scanner(System.in);
int i=0 ;
while(i <= 10) {
System.out.println("enter an integer");
if(??? < 0) { //here is where my question is
neg.add(sc.nextInt());
} else {
pos.add(sc.nextInt());
}
i++;
}
System.out.println("positive numbers" + pos);
System.out.println("negative numbers" + neg);
}
}