Question: java please make it as simple as possible make sure its running on netbeans 2. Converting Decimal to Binary: Write your own Stack program to
2. Converting Decimal to Binary: Write your own Stack program to implement the following problem Consider the following pseudocode to convert Decimal to Binary: Read (number) Loop (number > 0) 1) digit number modulo 2 2) print (digit) 3) number = number/2 The problem with this code is that it will print the binary number backwards (ex: 19 becomes 11001000 instead of 00010011) To remedy this problem, instead of printing the digit right away, we can push it onto the stack. Then after the number is done being converted, we pop the digit out of the stack and print it. Deliserablesto) You are required to implement and deliver a Java program) as described in the precious
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
