I'm using the StringTokenizer class to read a text file. In the text file, there's a couple of double values.
interest = Double.parseDouble(aString.nextToken());
System.out.println(interest);
It shows up fine in the console, however when I try to print it later,
System.out.println("Fixed Daily Interest = " + customers[i].get_interest() + "\n");
Precision is always lost by a decimal point. For example one of the values is 0.055, when I print it after I parse it in the first part of the code, it shows up exactly as that in the console. However in another method, trying to print it gives me 0.05, no matter what I try, not parsing it as a double variable, using DecimalFormat, etc. Would any kind soul guide me what's the mistake I'm making here? I'm really perplexed here.