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;publicclassSolution{publicstaticvoidmain(String[]args){Scannerscan=newScanner(System.in);intt=scan.nextInt();while(t-->0){try{longn=scan.nextLong();solve(n);}catch(Exceptione){System.out.println(scan.next()+" can't be fitted anywhere.");}}scan.close();}staticvoidsolve(longn){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");}}
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 →