We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
import java.util.Scanner;
public class DataTypeFitting {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int t = scanner.nextInt();
for (int i = 0; i < t; i++) {
try {
long n = scanner.nextLong();
System.out.println(n + " can be fitted in:");
if (n >= -128 && n <= 127) System.out.println("* byte");
if (n >= -32768 && n <= 32767) System.out.println("* short");
if (n >= -2147483648L && n <= 2147483647L) System.out.println("* int");
if (n >= -9223372036854775808L && n <= 9223372036854775807L) System.out.println("* long");
} catch (Exception e) {
System.out.println(scanner.next() + " can't be fitted anywhere.");
}
}
}
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Datatypes
You are viewing a single comment's thread. Return to all comments →
import java.util.Scanner; public class DataTypeFitting { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int t = scanner.nextInt();
}