Answers for "decimal places handel in cpp"

C++
0

how to format decimal palces in c++

std::cout << std::setprecision(2) << std::fixed;
// where the 2 is how many decimal places you want
// note you need to <iomanip>
Posted by: Guest on December-27-2019

Browse Popular Code Answers by Language