round c++ to 2 decimal places code example
Example 1: round double to n decimal places c++
value = round( value * 100.0 ) / 100.0;
value = round( value * 1000.0 ) / 1000.0;
Example 2: round double to 2 decimal places c++
double d = 0.12345;
std::cout.precision(2);
std::cout << d << std::endl;
Example 3: how to make floats output with 2 decimals c++
#include <iostream>
#include <iomanip>
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;
}