The program is supposed to ask the user for a number, and loops until the input is not a number (repeats if there is a number input). My code so far:
import java.util.*;
public class MataVarden
{
public static void main(String[] args) throws Exception
{
Scanner sc = new Scanner(System.in);
ArrayList<Integer> Values = new ArrayList<Integer>();
System.out.print("Input a number: ");
Values.add(sc.nextInt());
Collections.sort(Values);
System.out.println("Values sorted: " + Values);
}
}
What do you need to do in order to break an input if a non-number is entered?