CJCoding With Joseph
15per day

Fraction Class

Create a class Fraction with a numerator and denominator, a Multiply(Fraction other) method that returns a NEW Fraction (multiply numerators and denominators), and an override of ToString() 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.