Decimal to hexadecimal in JAVA programming


  1.    import java.util.Scanner;
  2.  
  3.     public class DecimalToHexa {
  4.  
  5.     public static void main(String[] args) {
  6.     Scanner myScanner=new Scanner(System.in);
  7.     int n;
  8.  
  9.     int[] arr=new int[100];
  10.     char ch[]=new char[100];
  11.     System.out.print("Enter a decimal number : ");
  12.     n=myScanner.nextInt();
  13.     int i=0,rem;
  14.     while (n!=0) {
  15.     rem=n%16;
  16.     if(rem<10){
  17.     rem=rem+48;
  18.     }
  19.  
  20.     else{
  21.     rem=rem+55;
  22.     }
  23.  
  24.     ch[i++]=(char) rem;
  25.     n=n/16;
  26.     }
  27.     System.out.print("Hexadecimal value is : ");
  28.     for (int j = i-1; j>=0; j--) {
  29.     System.out.print(ch[j]);
  30.     }
  31.  
  32.     System.out.println();
  33.     }
  34.  
  35.     }
  36.     //Enter a decimal number : 45678
  37.  
  38.     //Hexadecimal value is : B26E
  39.  

No comments:

Post a Comment