Question
In Java, please. Task 1: Parse 3 arguments specified as arguments from the command line of the program: one of the arguments will be in
In Java, please.
Task 1: Parse 3 arguments specified as arguments from the command line of the program: one of the arguments will be in decimal, one in binary, and one in hexadecimal. The numbers we specify will be unsigned integers (i.e., the numbers are positive, whole numbers). If an incorrect number of arguments is provided, you should print an error and exit.
Task 2: Identify the numbering system that each of the arguments refers to. This should occur regardless of the order in which the numbers are specified. 1. A binary number will have a 0b prefix. For example, the binary number 0b101011001 represents the decimal number 345 2. A hexadecimal number will have a 0x suffix. For example, the hexadecimal number 0x159 represents the decimal number 345 3. If either prefix 0b or 0x has not been specified, then that number should be considered a decimal number.
CAN NOT USE:
Build a GUI (1) Integer.parse (2) Integer.toHexString (3) Integer.toBinaryString (4) Built in bitwise operations (~, ^, |, &, <<, >>) Note: Logical operations are allowed (!, ||, &&, etc.)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started