✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено у результаті виконання програми:
public class Example1 {
public static void main(String[] args) {
for(int i = 0; i < 3; i++)
{
switch(i)
{
case 0: break;
case 1: System.out.print("one ");
case 2: System.out.print("two "); break;
case 3: System.out.print("three ");
}
}
System.out.println("done");
}
}