Tagged Questions
2
votes
3answers
100 views
Precision of decimal number in Java, C, C++ and others
Let's say we have this kind of loop (pseudocode)
double d = 0.0
for i in 1..10 {
d = d + 0.1
print(d)
}
In C with printf("%f", d) I get this:
0.100000
0.200000
0.300000
...
1.000000
In ...