✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class A {
int x = 0;
int y = 0;
}
Що буде виведено на екран в результаті виконання наступного фрагмента програми?
A x;
x = new A ();
System.out.print (xy);
System.out.println (xx);