Answers for "Rounding double Point Number To two Decimal Places in C and C++"

C++
3

round double to n decimal places c++

float roundoff(float value, unsigned char prec)
{
  float pow_10 = pow(10.0f, (float)prec);
  return round(value * pow_10) / pow_10;
}

auto rounded = roundoff(100.123456, 3);
// rounded = 100.123;
Posted by: Guest on September-16-2020
1

round double to n decimal places c++

value = round( value * 100.0 ) / 100.0; // 2 decimal places
value = round( value * 1000.0 ) / 1000.0; // 3 decimal places
Posted by: Guest on September-13-2020
0

round double to 2 decimal places c++

double d = 0.12345;
std::cout.precision(2); // for accuracy to 2 decimal places 
std::cout << d << std::endl; // 0.12
Posted by: Guest on September-13-2020

Code answers related to "Rounding double Point Number To two Decimal Places in C and C++"

Browse Popular Code Answers by Language