Monday, 13 February 2017

Scanner : hasNextBigDecimalMethod





public class hasNextBigDecimalMethod {

    public static void main(String[] args) {

        String s = "Hello World! 3 + 3.0 = 6";
        // create a new scanner with the specified String Object        /*Scanner scanner = new Scanner(s);*/        Scanner scanner = new Scanner(s);
        while (scanner.hasNext()) {
            // check if the scanner's next token is a BigDecimal            System.out.println("" + scanner.hasNextBigDecimal());
            // print what is scanned            System.out.println("" + scanner.next());        }

        // close the scanner        scanner.close();    }
}

No comments:

Post a Comment