✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Скільки разів в цьому циклі буде виконуватися рядок j = j - 1;
int j = 2;for (int i = 1; i < 100; i = i + 2){ j = j - 1; while(j < 15) { j = j + 5; }}