โ Back to Inheritance
Question 504
Coordinate ToString Override
Coordinate ToString Override
Every class in C# inheritsToString()fromobject. OverrideToString()in thePointclass so it returns the coordinate formatted as(x, y). Do NOT write aMainmethod. When the tester prints aPointcreated withx = 3andy = 4, the program prints: (3, 4)
Expected Output:
(3, 4)
Topics:
Inheritance
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.