logo

Crowdly

Tõene või väär: antud koodijupis jätab break break vahele kolmega jaguva numbr...

✅ 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);

}

More questions like this

Want instant access to all verified answers on moodle.taltech.ee?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!