CJCoding With Joseph
15per day

Point3D Constructor

Create a class Point3D with private int fields x, y, and z.

Requirements:
1. Constructor Point3D(int x, int y, int z)
2. toString() returns: "(x, y, z)"

Do NOT write a main function.

Expected Output:

(1, 2, 3)
Topics:
Classes
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.