Hi,

I'm trying to print a number but it's printing like this:
1.0000e+000
but I want to only show two 0's after the e+, do you know of any manipulators or something I could use to restrict the numebr of digits?

I'm printing it right now using:
cout << setw(12) << right << scientific << setprecision(4) << F(i+1) << endl;

thanks,

Canadian