✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class abcPoint {
abcPoint (int a, int b) {
x = a;
y = b;
}
int x, y;
...
}
Вкажіть результат виконання наступного фрагмента коду:
abcPoint p = new abcPoint (5,3), p1 = p;
px = 4;
System.out.println (p1.x);
(Java)