โ Back to Classes
Question 224
Fraction Class
Fraction Class
Create a classFractionwith a numerator and denominator, aMultiply(Fraction other)method that returns a NEW Fraction (multiply numerators and denominators), and an override ofToString()returning "n/d". Do NOT write a Main method. (1/2) * (3/4) prints '3/8'.
Expected Output:
3/8
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.