-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradix.java
More file actions
31 lines (30 loc) · 766 Bytes
/
radix.java
File metadata and controls
31 lines (30 loc) · 766 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
import java.util.*;
public class radix
{
public static void main(String args[])
{
String num;
Scanner sc=new Scanner(System.in);
num=sc.nextLine();
if(num.matches("[01]+"))
{
System.out.println("Binary Radix=2");
}
else if (num.matches("[0-7]+"))
{
System.out.println("Octal Radix=8");
}
else if (num.matches("[0-9]+"))
{
System.out.println("Decimal Radix=10");
}
else if (num.matches("[0-9A-F]+"))
{
System.out.println("HexaDecimal Radix=16");
}
else
{
System.out.println("Not a Number");
}
}
}