Answers for "how to specify how many decimal to print out with std::cout"

C++
1

how to specify how many decimal to print out with std::cout

#include <iostream>
#include <iomanip>

int main()
{
    double d = 122.345;
    std::cout << std::fixed << std::setprecision(2) << d;
}

//result that get print out: 122.34
Posted by: Guest on May-30-2020

Code answers related to "how to specify how many decimal to print out with std::cout"

Browse Popular Code Answers by Language