for (int i = 0; i < 10; i++) { 
     If (i == 4) { 
       continue;
  }
  System.out.println(i);
}