Advertisement
etonw

function to format number of decimal places

Jun 14th, 2022 (edited)
1,121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. // function to format number of decimal places
  2. void setDecimalPlaces()
  3. {
  4.     cout.setf(ios::fixed);     
  5.     cout.setf(ios::showpoint);
  6.     cout.precision(8);          // set number of decimal places in bracket
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement