โ Back to Encapsulation
Question 485
ToString Override
ToString Override
TheFractionclass stores privatenumeratoranddenominatorfields set by the constructor. OverrideToString()so it returns the numerator and denominator with a/between them. The tester passes the object straight toConsole.WriteLine, which calls yourToString. Do NOT write aMainmethod. Fornew 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.