✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public class SomeClass {
public static void main (String [] args) {
int i = 0;
do {
if (i> 5) i--;
if (i <4) i ++;
if (i = = 5) i + = 2;
i ++;
System.out.print (i);
} While (i < = 5);
}
}
(Java)