Java Datatypes

  • + 0 comments

    long x = sc.nextLong(); System.out.println(x + " can be fitted in:");

            // Check if Byte
            if (x >= Byte.MIN_VALUE && x <= Byte.MAX_VALUE) {
                System.out.println("* byte");
                System.out.println("* short");
                System.out.println("* int");
                System.out.println("* long");
            }
            // Check if Short
            else if (x >= Short.MIN_VALUE && x <= Short.MAX_VALUE) {
                System.out.println("* short");
                System.out.println("* int");
                System.out.println("* long");
            }
            // Check if Integer
            else if (x >= Integer.MIN_VALUE && x <= Integer.MAX_VALUE)