Answers for "round double to 3 decimal places cpp"

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

Code answers related to "round double to 3 decimal places cpp"

Browse Popular Code Answers by Language