for (int i=1; i<=10; i++) { if (i % 3 == 0) { continue; } println("i=" + i); }