SUMMARY:
double roundit(double num, double N)
{
double d = log10(num);
double power;
if (num > 0)
{
d = ceil(d);
power = -(d-N) + 1;
(d-N);
}
else
{
d = floor(d);
power = -(d-N) -1;
(d-N);
}
return pow((int)(pow(num(int)(num * pow(10.0, power) + 0.5)0.5) * pow(10.0, -power);
}
So you need to find the decimal place of the first non-zero digit, then save the next N-1 digits, then round the Nth digit based on the rest.
We can use log to do the first.
log 1239451 = 6.09
log 12.1257 = 1.08
log 0.0681 = -1.16
So for numbers > 0, take the ceil of the log. For numbers < 0, take the floor of the log.
Now we have the digit d: 7 in the first case, 2 in the 2nd, -2 in the 3rd.
We have to round the (d-N)th digit. Something like:
double roundedrest = pow(num, -(d-N) + 1);
or if the number is < 0:
double roundedrest = pow(numnum * pow(10, -(d-N) - 1);
(d-N));
pow(1239451, -4) = 123.9451
pow(12.1257, 1) = 121.257
pow(0.0681, 4) = 681
Then do the standard rounding thing:
roundedrest = (int)(roundedrest + 0.5);
And undo the pow.
roundednum = pow(roundedrest, -(power))
Where power is the power calculated above.
