Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
dragon731012
GitHub Repository: dragon731012/-WORKING-bookmarklets-and-games
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+".");