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 7684577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:03:38+00:00 2026-05-31T19:03:38+00:00

I have a program where I am generating two double numbers by adding several

  • 0

I have a program where I am generating two double numbers by adding several input prices from a file based on a condition.

String str;
double one = 0.00;
double two = 0.00;
BufferedReader in = new BufferedReader(new FileReader(myFile));

while((str = in.readLine()) != null){
     if(str.charAt(21) == '1'){
         one += Double.parseDouble(str.substring(38, 49) + "." + str.substring(49, 51));
     }

     else{
         two += Double.parseDouble(str.substring(38, 49) + "." + str.substring(49, 51));
     }
   }

in.close();
System.out.println("One: " + one);
System.out.println("Two: " + two);      

The output is like:

One: 2773554.02
Two: 6.302505836000001E7

Question:

None of the input have more then two decimals in them. The way one and two are getting calculated exactly same.

Then why the output format is like this.

What I am expecting is:

One: 2773554.02
Two: 63025058.36

Why the printing is in two different formats ? I want to write the outputs again to a file and thus there must be only two digits after decimal.

  • 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-05-31T19:03:39+00:00Added an answer on May 31, 2026 at 7:03 pm

    The issue with the missing accuracy is caused by using double. Use BigDecimal to avoid this.

    For printing, use DecimalFormat like this:

    DecimalFormat format = new DecimalFormat("0.##");
    System.out.println("One: " + format.format(one));
    System.out.println("Two: " + format.format(two));
    

    Documentation for DecimalFormat: http://docs.oracle.com/javase/1.4.2/docs/api/java/text/DecimalFormat.html

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

Sidebar

Related Questions

I have this program generating a firstname and lastname from a file. When I
Have a program that's dynamically generating an Excel file and a csv. The excel
I have a program that is generating Xml Files from data out of a
I have a program that uses the mt19937 random number generator from boost::random. I
Let's say I have two tables with several fields and in every table there
I have a program who's generating some data in registry. I save it with
I have a Java program that generates a text file with a word per
I have a Java program that is generating XML data which happens to be
I have a new program that will be generating a lot of Base64 encoded
I have program that has a variable that should never change. However, somehow, it

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.