✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
sealed class A
{ рublic int x = 123; }
class B: A
{ static void Main ()
{
A a = new A();
int i = ax = 10;
B b = new B();
int j = bx = 20;
System.Console.Write ( "ax = {0} bx = {1}", i, j);
}
}
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
C# oop_class