CJCoding With Joseph
15per day

Point With X and Y

Create a class named Point with two private members: int x and int y.

Requirements:
1. Create a constructor Point(int x, int y) that sets both fields.
2. Create getX() and getY() methods.

IMPORTANT: Do NOT write a main method. A hidden Main will create new Point(3, 8) then print x and y on separate lines.

Expected Output:
3
8

Expected Output:

3
8
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.