folks! I've encountered a little problem: I'm doing a simple addition with three double values. The result has a smaller precision than the used values.
double minutes = 3;
minutes = minutes / (24.0*60.0); // contains 0.00208333
double hours = 3;
hours = hours / 24.0; // contains 0.125
double days = 3; // contains 3
double age = days + hours + minutes; // result is 3.12708
I found no way to avoid this behaviour.