⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getintdemo.java

📁 java编程代码
💻 JAVA
字号:

import java.util.Scanner;
import java.util.InputMismatchException;

public class getIntDemo
{
    /**
    Precondition: keyboard is an object of the class Scanner that has
    been set up for keyboard input (as we have been doing right along).
    Returns: An int value entered at the keyboard.
    If the user enters an incorrectly formed input she or he is
    prompted to reenter the value,
    */
    public static int getInt(Scanner keyboard)
    {
        int number = 0; //to keep compiler happy
        boolean done = false;

        while (! done)
        {
            try
            {
                System.out.println("Enter a whole number:");
                number = keyboard.nextInt();
                done = true;
             }
             catch(InputMismatchException e)
             {
                 keyboard.nextLine();
                 System.out.println(
                       "Not a correctly written whole number.");
                 System.out.println("Try again.");
             }
        }

        return number;
    }

    public static void main(String[] args)
    {
        Scanner keyboardArg = new Scanner(System.in);
        int number = getInt(keyboardArg);
        System.out.println("You entered " + number);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -