-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHexDigit2Dec.java
More file actions
32 lines (29 loc) · 1004 Bytes
/
HexDigit2Dec.java
File metadata and controls
32 lines (29 loc) · 1004 Bytes
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
30
31
32
import java.util.Scanner;
/**
* Created by Melissa on 19/04/2017.
*/
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");
}
}
}