Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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