Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Match the repetitions and numbers of their iterations:
int x = 13, y = 0; while(x>y) { x--; y++; }
for (int j = 5; j > 0; j--) System.out.println("j = " + j);
int i = 5; while(i>=0) --i;
int counter = 10; do counter++; while(false);
while (true) System.out.println("Hello World!");
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!