document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class JavaContinueExample {
  2.  
  3.   public static void main(String[] args) {
  4.    
  5.     int intArray[] = new int[]{1,2,3,4,5};
  6.    
  7.     System.out.println("All numbers except for 3 are :");
  8.     for(int i=0; i < intArray.length; i++)
  9.     {
  10.       if(intArray[i] == 3)
  11.         continue;
  12.       else
  13.         System.out.println(intArray[i]);
  14.     }
  15.   }
  16. }
');