集册 Java实例教程 使用扫描仪检查输入类型

使用扫描仪检查输入类型

欢马劈雪     最近更新时间:2020-01-02 10:19:05

509
使用扫描仪检查输入类型
/** from 
N o w  J a v a  . c o m**/



import java.io.*;

import java.util.*;


public class InputTypeChecker {

  public static void main(String args[]) throws Exception {

    System.out.print("Enter Something: ");

    // Write code here

    Scanner scan = new Scanner(System.in);


    if (scan.hasNextInt()) {

      System.out.println("This input is of type Integer.");

    } else if (scan.hasNextFloat()) {

      System.out.println("This input is of type Float.");

    } else if (scan.hasNext()) {

      System.out.println(
展开阅读全文