如何确保扫描仪输入为特定格式

时间:2018-10-23 11:20:49

标签: validation input java.util.scanner decimalformat

///当系统提示用户输入以下格式的小数点数字xx.xxx

public static void main(String[] args) {
    double decNum;
    Scanner scanner = new Scanner(System.in);

    System.out.println("Please enter a decimal number in the format xx.xxx");

    decNum = scanner.nextDouble();



}

///如何确保任何其他格式都会提示错误消息并终止程序。

0 个答案:

没有答案