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 6 as the input it produces 110 not 011.
import java.util.Scanner;
public class LabProgram {
public static void main(String[] args){
// The positive integer to convert
int decimal =6; // Example input
// Initialize a StringBuilder to store the binary representation
StringBuilder binary = new StringBuilder();
// Convert the decimal to binary
while (decimal >0){
// Output the remainder (0 or 1)
binary.append(decimal %2);
// Divide the decimal by 2
decimal /=2;
}
// Output the binary representation in reverse order
System.out.println(binary.reverse());
/* Type your code here. */
}
}

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!