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.
importjava.util.Scanner;classSolution{publicstaticvoidmain(Stringargs[]){Scannersc=newScanner(System.in);inti,T=sc.nextInt();for(i=0;i<T;i++){try{longn=sc.nextLong();System.out.println(n+" 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(Exceptione){System.out.println(sc.next()+" can't be fitted anywhere.");}}sc.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 →