✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Tõene või väär: antud koodijupis jätab breakbreak
vahele kolmega jaguva numbri ja läheb järgmise numbri juurde. Ehk konsooli prinditakse: 1, 2, 4, 5, 7, 8, 10
for (int i = 1; i < 10; i++) {
if (i % 3 == 0) {
break;
}
System.out.println(i);
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!