✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який результат виконання наступного фрагмента коду:
int i = 2;
while (i<7)
{
if (i != 5)
i++;
else
cout << i++ << " ";
}