Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8753419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:25:15+00:00 2026-06-13T13:25:15+00:00

i am trying to write a binary number class in java .. but if

  • 0

i am trying to write a binary number class in java .. but if i send an integer starting with 0 the number is not saved properly . i know what the problem is but i cant figure out a solution . in c++ i used a float instead of an int but in java that does not seem to work .

import java.util.*;


class BinaryNumber {

private boolean b[];


public void setBit(int index,boolean value){
 b[index]=value;
}

public boolean getBit(int index){
 return b[index];
}

public void clear(){    
    for(int i=0;i<8;i++)
    b[i]=false;
}

public BinaryNumber() {
    b=new boolean[8];
    for(int i=0;i<8;i++){
    b[i]=false;
    }   
} 

public void inputNumber(int a){

 if(a>11111111) {    
    System.out.println(" Exception Number to Large Nothing Entered ");
 }   
 else {

     int number=a;
     int c=7;
     int digit=0;

     for(int i=0;i<8;i++) {
         digit=number%10;
             if(digit==1){ 
             b[c]=true;
             }
             else if (digit==0) { 
             b[c]=false; 
             }
             else { 
             System.out.println(" Only Binary Number Accepted "); 
             clear();
             i=8; //break
             }      
         number=number/10;
         c--;       
     }   
 }  
}

public void outputNumber(){     
    for(int i=0;i<8;i++){
        if(b[i]==true){
            System.out.print("1");
        }
        else{
            System.out.print("0");
        }
    }       
    System.out.println(""); 
}

 }


class Q5{
public static void main(String args[]){

BinaryNumber a=new BinaryNumber();  
a.inputNumber(00100110);    
a.outputNumber();

BinaryNumber b=new BinaryNumber();  
b.inputNumber(00100111);
    b.outputNumber();   

}
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T13:25:16+00:00Added an answer on June 13, 2026 at 1:25 pm

    Numbers starting with 0 are interpreted by Java as being in octal.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to do the simplest thing ever. Write a number in QT in binary
I'm trying to write binary data files from fortran, but I find the regular
I am trying to write simple Binary Search tree class (BST). When I add
I'm trying to write a code that converts a number to binary, and this
Im trying to write a binary tree in prolog but getting the following error:
I am trying to write data stored in a binary file using turbo C++.
I am trying to write a program that allows a binary to be run,
I have a binary file to which I'm trying to write however I dont
I'm trying to read binary data from a specific offset. I write the data
I want to write data into the file in binary form. I was trying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.