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.
public class Solution {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int t = scanner.nextInt();
while (t-- > 0) {
String input = scanner.next();
try {
long n = Long.parseLong(input);
System.out.println(input + " can be fitted in:");
if (n >= Byte.MIN_VALUE && n <= Byte.MAX_VALUE) {
System.out.println("* byte");
}
if (n >= Short.MIN_VALUE && n <= Short.MAX_VALUE) {
System.out.println("* short");
}
if (n >= Integer.MIN_VALUE && n <= Integer.MAX_VALUE) {
System.out.println("* int");
}
if (n >= Long.MIN_VALUE && n <= Long.MAX_VALUE) {
System.out.println("* long");
}
} catch (Exception e) {
System.out.println(input + " can't be fitted anywhere.");
}
}
scanner.close();
}
}
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 Solution { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int t = scanner.nextInt(); while (t-- > 0) { String input = scanner.next(); try { long n = Long.parseLong(input); System.out.println(input + " can be fitted in:");
}