You are viewing a single comment's thread. Return to all comments →
//Best Solution:- import java.util.Scanner; public class Solution {
public static void main(String[] args) { Scanner sc=new Scanner(System.in); int T=sc.nextInt(); String str=new String(); for(int i=0;i<T;i++) { try { long x=sc.nextLong(); System.out.println(x+" can be fitted in:"); if(x>=-128 && x<=127) { System.out.println("* byte"); System.out.println("* short"); System.out.println("* int"); System.out.println("* long"); } else if(x >= Short.MIN_VALUE && x <= Short.MAX_VALUE) { System.out.println("* short"); System.out.println("* int"); System.out.println("* long"); } else if(x >= Integer.MIN_VALUE && x <= Integer.MAX_VALUE) { System.out.println("* int"); System.out.println("* long"); } else System.out.println("* long"); } catch(Exception e) { System.out.println(sc.next()+" can't be fitted anywhere."); } } }
}
Java Datatypes
You are viewing a single comment's thread. Return to all comments →
//Best Solution:- import java.util.Scanner; public class Solution {
}