show/hide this revision's text 4 added 28 characters in body; added 2 characters in body; edited body

Here's the same code in Java without the 12.100000000000001 bug that the accepted answer has.

I also removed repeated code, changed power to a type integer to prevent floating issues when d - n - d is done, and made the long intermediate more clear

The bug was caused by multiplying a large number with a small number. Instead I divide two numbers of similar size.

EDIT
Fixed more bugs. Added check for 0 as it would result in NaN. Made the function actually work with negative numbers (The original code doesn't handle negative numbers because a log of a negative number is a complex number)

public static double roundToSignificantFigures(double num, int n) {
    if(num == 0) {
        return 0;
    }

    final double d = Math.ceil(Math.log10(num < 0 ? -num: num));
    final int power = n - (int) d;

    final double magnitude = Math.pow(10, power);
    final long shifted = Math.round(num*magnitude);
    return shifted/magnitude;
}
show/hide this revision's text 3 added 398 characters in body; deleted 181 characters in body; deleted 3 characters in body

Here's the same code in Java without the 12.100000000000001 bug

I also removed repeated code, changed power to a type integer to prevent floating issues when d - n is done, and made the long intermediate more clear

The bug was caused by multiplying a large number with a small number. Instead I divide two numbers of similar size.

EDIT
Fixed more bugs. Added check for 0 as it would result in NaN. Made the function actually work with negative numbers (The original code doesn't handle negative numbers because a log of a negative number is a complex number)

public static double roundToSignificantFigures(double num, int n) {
    double d = Math.log10(num);
    if(num > == 0) {
        d = Math.ceil(d)return 0;
    }

    else {
        final double d = Math.floor(d)Math.ceil(Math.log10(num < 0 ? -num: num));
    }
    final int power = n - ((int) (int) d- n);

    final double magnitude = Math.pow(10, power);
    final long shifted = Math.round(num*magnitude);
    return shifted/magnitude;
}
show/hide this revision's text 2 deleted 31 characters in body; added 3 characters in body

Here's the same code in Java without the 12.100000000000001 bug

I also removed repeated code, changed power to a type integer to prevent floating issues when d - n is done, and made the long intermediate more clear(also reduces floating issues)

That

The bug was caused by multiplying a large number with a small number. Instead I divide two numbers of similar size.

public static double roundToSignificantFigures(double num, int n) {
    double d = Math.log10(num);
    if(num > 0) {
        d = Math.ceil(d);
    } else {
        d = Math.floor(d); 
    }
    final int power = -((int) d - n);

    final double magnitude = Math.pow(10, power);
    final long shifted = Math.round(num*magnitude);
    return shifted/magnitude;
}
show/hide this revision's text 1