Here's what I have for this assignment. Basically our teacher wants us to prompt the user to enter some integers (i.e. 1,4,3,6,8,2). Then the method is supposed to insert those in the correct position so when we print it out, it'd print out as: 1,2,3,4,6,8 Here's what I have so far: public static void sorted() { LinkedList list = new LinkedList(); ...