该程序应该向用户询问一个数字,然后循环直到输入不是数字(如果有数字输入则重复)。到目前为止我的代码:
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);
}
}
如果输入了非数字,您需要做什么才能中断输入?