✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Queue q = new Queue ();
string str = "A2B43";
for (int i = 0; i
if (str [i]> = '0' && str [i] <= '9') q.Enqueue (str [i]);
while (q.Count > 0)
Console.Write (q.Peek());
Вкажіть результат виведення після запуску програми на компіляцію і виконання:
C# oop_class