CJCoding With Joseph
15per day

Triple Constructor - Point3D

Create a class named Point3D with three private members: int x, int y, int z.

Requirements:
1. Create a constructor Point3D(int x, int y, int z) that sets all three fields.
2. Create a public toString() that returns: "(x, y, z)".

IMPORTANT: Do NOT write a main method. A hidden Main will create new Point3D(1, 2, 3) and print the object.

Expected Output:
(1, 2, 3)

Expected Output:

(1, 2, 3)
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.