Path: blob/main/tests (don't work)/whole to mixed fractions
15482 views
javascript: alert("whole fractions to mixed fractions");var numerator=prompt("what is the numerator?");var denominator=prompt("what is the denominator?");var whole=prompt("what is the whole number?"); var top=whole*denominator+numerator;alert("your answer is "+top+"/"+denominator+".");