Question
Please use the simplest java code possible, not much of an experienced programmer Write a program in java which takes as input an integer (positive
Please use the simplest java code possible, not much of an experienced programmer Write a program in java which takes as input an integer (positive or negative) in base 10, and returns a string representation in 32-bit of the number in hexadecimal and binary. a. Use a twos-complement representation for negative numbers b. You can create an array of symbols 0-F to make it easier to figure out each digit. char digits[]=[0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F]; then digits[12] will return C c. You should convert the absolute value to binary first, then take the twos complement if the value is negative, then convert the binary to hexadecimal d. You may not use any built in conversion operators or print operators that can do the conversion automatically (i.e. NO printf(%x,number)). All non-decimal numbers should be assumed to be 32-bit. When inputting or outputting binary or hex, please make sure the numbers represented are full 32-bit numbers. Do not leave off the leading 0s or 1s. Binary: 00001111110111010101111111011101 (32 digits) Hex: 0FDD5FDD (8 digits long)
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