13

Possible Duplicate:
Convert a double to fixed decimal point in C++

Suppose , I have double a = 0 and I want to print it as 0.0000 .

I've tried this :

cout.precision(4) ; 
cout<<a<<endl ; 

but it gaves 0 as the output.

Community
  • 1
  • 1
URL87
  • 10,667
  • 35
  • 107
  • 174

2 Answers2

29

Just try:

#include <iomanip>
...
cout << fixed << setprecision(4);
cout << a << endl;

See here.

semekh
  • 3,867
  • 2
  • 24
  • 34
1
#include <iomanip>
#include <iostream.h>


int main()
{
double a = 0.00;
// print a double, 2 places of precision 
cout << setprecision(4) << a << endl;
}
crh225
  • 821
  • 18
  • 34