You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
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+".");