โ Back to Classes
Question 70
Print a Point (operator<<)
Print a Point (operator<<)
You want clean logging for coordinates. Create a class Point2D with private ints x and y. Requirements: 1) Constructor Point2D(int x, int y) 2) Overload the stream insertion operator<< so Point2D prints like: (x, y) Implement operator<< as a non-member friend. Do NOT write a main function.
Expected Output:
(3, 7) (-1, 0)
Topics:
ClassesOperator Overloading
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.