Java program to Print Odd and Even Number from an Array


In the loop check, the result of I %2 operation on each element, if 0 the element is even else the element is odd.

Example

Live Demo

public class OddNumbersInAnArray {
   public static void main(String args[]){
      int[] myArray = {23, 93, 56, 92, 39};
      System.out.println("Even numbers in the given array are:: ");

      for (int i=0; i<myArray.length; i++){
         if(myArray[i]%2 == 0){
            System.out.println(myArray[i]);
         }
      }
      System.out.println("Odd numbers in the given array are:: ");

      for (int i=0; i<myArray.length; i++){
         if(myArray[i]%2 != 0){
            System.out.println(myArray[i]);
         }
      }
   }
}

Output

Even numbers in the given array are::
56
92
Odd numbers in the given array are::
23
93
39

Updated on: 13-Mar-2020

947 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements