int i = 0; while (i < 10) { if (i == 4) { i++; //why do I need this line ? continue; } System.out.println(i); i++; }