CJCoding With Joseph

Coordinate ToString Override

Every class in C# inherits ToString() from object. Override ToString() in the Point class so it returns the coordinate formatted as (x, y). Do NOT write a Main method.

When the tester prints a Point created with x = 3 and y = 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.