-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHexDigit2Dec.java
29 lines (25 loc) · 947 Bytes
/
HexDigit2Dec.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import java.util.Scanner;
public class HexDigit2Dec {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter a hex digit: ");
String hexString = input.nextLine();
//Check if the hex string has exactly one character
if(hexString.length() != 1){
System.out.println("You must enter exactly one character");
System.exit(1);
}
//Display decimal value for the hex digit
char ch = hexString.charAt(0);
if(ch <= 'F' && ch >= 'A'){
int value = ch - 'A' + 10;
System.out.println("The decimal value for hex digit " + ch + " is " + value);
}
else if (Character.isDigit(ch)){
System.out.println("The decimal value for hex digit " + ch + " is " + ch);
}
else{
System.out.println(ch + " is an invalid input");
}
}
}