What does this code print?
int i = 5; do { i++; System.out.print(i + " "); i -= 2; } while (i > 1);
Create a free account to access the full topic