For some reason, my code will not accept input on the last line \"What would you like to order: \"
Could anyone tell me what my error is here? It is compiling correctly
Your code has three braces missing. Arraylist have to declared like this
ArrayList list = new ArrayList();
If you want an arraylist of integers
ArrayList in = new ArrayList();