Initializetwo integer variables and set them to zero. Then c
Initializetwo integer variables and set them to zero. Then continuing with programmingassignment #3, loop through each item in the array and do a calculation todetermine if the number is even or odd (using the modulus operator). Using aswitch statement, increment one variable for all even numbers and do the samefor the other variable for any odd numbers (using the increment operator).Output the totalnumber of even and off numbers to the screen. Exampleoutput:3453125854810456694345205235There are 5 evennumbers.There are 5 oddnumbers.