Java program Hexadecimal to Decimal Conversion.

import java.util.Scanner;
public class JavaExample{  
   public static void main(String args[]){ 
 Scanner scanner = new Scanner(System.in);
 System.out.print("Enter any hexadecimal number: ");
 String hexnum = scanner.nextLine();
 scanner.close();
  
 //converting hex to decimal by passing base 16 
 int num = Integer.parseInt(hexnum,16);
  
 System.out.println("Decimal equivalent of given hex number: "+num);
   }
}
Java program Hexadecimal to Decimal Conversion. Java  program Hexadecimal to Decimal Conversion. Reviewed by on December 20, 2019 Rating: 5

No comments:

Powered by Blogger.