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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!