Answers for "how to print 4 digits after decimal in c++"

6

how to print a decimal number upto 6 places of decimal in c++

#include <iostream>
#include <iomanip>

int main()
{
    double d = 122.345;

    std::cout << std::fixed;
    std::cout << std::setprecision(2);
    std::cout << d;
}
Posted by: Guest on May-19-2020
0

how to print 4 digits after decimal in c++

cout<<"\n"<<fixed<<setprecision(4)<<variable;
Posted by: Guest on July-19-2021

Code answers related to "how to print 4 digits after decimal in c++"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language