CJCoding With Joseph

ToString Override

The Fraction class stores private numerator and denominator fields set by the constructor. Override ToString() so it returns the numerator and denominator with a / between them. The tester passes the object straight to Console.WriteLine, which calls your ToString. Do NOT write a Main method.

For new Fraction(3, 4) the program prints:
3/4

Expected Output:

3/4
Topics:
Encapsulation
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.