So I've gotten the answer to my last question (I don't know why I didn't think of that). I was printing a double using cout that got rounded when I wasn't expecting it. How can I make cout print a double using full precision?
|
|
|||||
|
|
You can set the precision directly on
You can
|
|||||||||||
|
|
Use std::setprecision:
|
|||||||||||
|
|
Here is what I would use:
Basically the limits package has traits for all the build in types. See: http://www.cplusplus.com/reference/std/limits/numeric_limits.html |
|||||
|
|
The iostreams way is kind of clunky. I prefer using
Output:
|
||||
|
|
|
cout is an object that has a bunch of methods you can call to change the precision and formatting of printed stuff. There's a setprecision(...) operation, but you can also set other things like print width, etc. Look up cout in your IDE's reference. |
|||
|
|
|
Most portably...
|
|||||
|
|
With ostream::precision(int)
will yield
Why you have to say "+1" I have no clue, but the extra digit you get out of it is correct. |
|||||
|
%.12f means floating point, with precision of 12 digits. |
|||||
|
