Possible Duplicate:
floating point precision
when I do cout<<8.0
.Its getting printed as 8
.How to Print in the output console of c++ the entire zeros after decimal point like 8.00000000
I tried this cout<<setprecision(5)<<(double)8.0;
still printing 8