✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Milline on i väärtus, kui loop lõppeb?
int i = 0;
while (true){
i++;
if (i % 3 == 1) continue;
i++;
if (i % 7 == 5) break;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!