✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public static void Main ()
{
Queue q = new Queue ();
q.Enqueue (11);
q.Enqueue (22);
q.Enqueue (33);
q.Dequeue();
q.Enqueue (44);
Console.WriteLine ( "{0} {1} {2}", q [0], q [1], q [2]);
}
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
C# oop_class