✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
En Java, combien de fois le texte « hello » est-il affiché ?
int nb = 10;while(nb < 20) { System.out.println("hello"); nb++; // ce qui correspond à : nb = nb +1;}