Question: Can you help me fix the reverse binary problem ( if i type in 6 as the input it produces 1 1 0 not 0
Can you help me fix the reverse binary problem if i type in as the input it produces not
import java.util.Scanner;
public class LabProgram
public static void mainString args
The positive integer to convert
int decimal ; Example input
Initialize a StringBuilder to store the binary representation
StringBuilder binary new StringBuilder;
Convert the decimal to binary
while decimal
Output the remainder or
binary.appenddecimal ;
Divide the decimal by
decimal ;
Output the binary representation in reverse order
System.out.printlnbinaryreverse;
Type your code here.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
