✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Результат компіляції програми:
int i = 19;
if (i>0 && i<=6) {
System.out.println("one");
} else if (i>6 && i<=10) {
System.out.println("two");
} else if (i>10 && i<=18) {
System.out.println("three");
} else {
System.out.println("four");
}