how to show the decimal place in c++ code example
Example 1: how to print for limited decimal values in c++
using namespace std;
int main()
{
float x=10.3445f;
cout<<fixed<<setprecision(5)<<x<<endl;
cout<<fixed<<setprecision(2)<<x<<endl;
cout<<fixed<<setprecision(3)<<x<<endl;
cout<<fixed<<setprecision(0)<<x<<endl;
return 0;
}
Example 2: 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>