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.
  • HackerRank Home

    HackerRank

  • |
  • Prepare
  • Certify
  • Compete
  • Apply
  • Hiring developers?
  1. Prepare
  2. Java
  3. Introduction
  4. Java Datatypes
  5. Discussions

Java Datatypes

Problem
Submissions
Leaderboard
Discussions
Editorial

    You are viewing a single comment's thread. Return to all comments →

  • aadilahmed245
    1 year ago+ 2 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.");
        }
    
     }
    }
    

    }

    0|
    Permalink
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy