Answer:
int i = 0;
while (i<6) {
System.out.print(i + " ");
i = (i+2)/2;
}
Step-by-step explanation:
1.6m questions
2.0m answers