convert decimal to hexadecimal in java

public class DecimalToHexExample2{    
public static String toHex(int decimal){    
     int rem;  
     String hex="";   
     char hexchars[]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};  
    while(decimal>0)  
     {  
       rem=decimal%16;   
       hex=hexchars[rem]+hex;   
       decimal=decimal/16;  
     }  
    return hex;  
}    
public static void main(String args[]){      
     System.out.println("Hexadecimal of 10 is: "+toHex(10));  
     System.out.println("Hexadecimal of 15 is: "+toHex(15));  
     System.out.println("Hexadecimal of 289 is: "+toHex(289));  
}} 

4.8
5
Awgiedawgie 440215 points

                                    import java.util.Scanner;
public class DecimalToHexaExample 
{
   public static void main(String[] args) 
   {
      Scanner sc = new Scanner(System.in);
      System.out.println("Please enter decimal number: ");
      int decimal = sc.nextInt();
      String strHexadecimal = "";
      while(decimal != 0)
      {
         int hexNumber = decimal % 16;
         char charHex;
         if(hexNumber <= 9 && hexNumber >= 0)
         {
            charHex = (char)(hexNumber + '0');
         }
         else
         {
            charHex = (char)(hexNumber - 10 + 'A');
         }
         strHexadecimal = charHex + strHexadecimal;
         decimal = decimal / 16;
      }
      System.out.println("Hexadecimal number: " + strHexadecimal);
      sc.close();
   }
}

4.8 (5 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
converter decimal to hexadeimal java Integer to hexadecimal conversion java decimal to hexadecimal with 0 in java convert decimal to hex java convert int to hex in java how to convert decimal to hexadecimal in java java program to convert decimal into hexadecimal java integer to hexadecimal string program to convert decimal to hexadecimal in jAVA Convert an int to Hex in java how to convert int to hexadecimal int in java how to convert int to hexadecimal in java java how to convert int to hex java convert int to hex convert int to hex java decimal and fraction to hexadecimal in java decimal to hexadecimal with fraction in java int to hex byte java convert a int to hexa bytes in java convert a int to hexa in java convert 222 to hexadecimal in java java decimal to hexa Convert Decimal To Hexa-Decimal including negative numbers java java int to hex java int to hexadecimal java int to hexa decimal how to change integer into hexadecimal value in java convert a number to hexadecimal in java java int to hex value integer to hexadecimal java integer to hex java java convert from decimal to hexadecimal how to convert number to hexadecimal in java decimal to hex converter java int to hex java how to convert a hexadecimal number to decimal in java java decimal to hex java dec to hex java decimal to hexadecimal int to hexadecimal java convert a number to hexadecimal java java convert number to hexadecimal decimal to hex using coding java convert from dec to hex in java decimal to hexa decimal java convert hex to decimal hexadecimal a decimal how to convert decimal to bigdecimal in java decimal in hex decimal to hexa decimal hex to decimal converter online (short) decimal to hexadecimal ae hex to decimal hex to decimal converter hexa en decimal hexatridecimal to decimal decimal to hexadecimal Java convert decimal to octal convert decimal 51 to hex decimal to hexadecimal converter hexadecimal to decimal hex decimal to ascii decimal to hexa decimal to 2 byte hex in java from decimal to hex decimal to hex hex to decimal how to convert decimal to hexadecimal java how to convert hexadecimal to decimal java java hexa to decimal how to convert to hexadecimal to decimal how to converte decimal to hex in java decimal tohex in java program to convert decimal to hexadecimal how to convert hexadecimal into decimal how to convert hexadecimal to signed decimal hexadecimal to decimal conversion program in java decimal to hexadecimal conversion program in java java function to convert decimal to hexadecimal java program for converting between decimal to hexadecimal how to convert hexadecimal to decimal how to turn decimal to hexadecimal very inefficient decimal to hexadecimal converter java how to convert decimal to hexadecimal convert decimal to hexadecimal convert decimal to hexadecimal java how to convert decimal to hex in javca how to convert decimal to hex in java library how to convert decimal to hex in java convert decimal to hexadecimal java code Convert a decimal number to hexadecimal number java to hex num java method java program that transforms decimal number to hexadecimal number convert decimal to hex in java write a program to convert decimal to hexadecimal in java how to convert number to hex in java dec to hex java decimal to hexadecimal in java inbuilt function decimal to hexadecimal in java decimal to hex in java decimal to hex java java convert decimal to hex java program to change digit to hex turn decimal int into hexadicmal int java how to convert decimal to hex java decimal to hexadecimal ajva simple java program for converting decimal to hexadecimal base 10 to hex in java from 10 to hex java decimal to hexadecimal conversion in java decimal to hexadecimal java dec 2 hex java decimal to hex string java convert decimal to hexadecimal in java
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source