Question: Given the integer array averageSalaries with the size of NUM _ INPUTS, write a for loop that sets sumEvens to the sum of all the

Given the integer array averageSalaries with the size of NUM_INPUTS, write a for loop that sets sumEvens to the sum of all the even integers in averageSalaries.
Ex: If the input is 8247548739, then the output is:
Even sum: 136 import java.util.Scanner;
public class EvenSum {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
final int NUM_INPUTS =5;
int[] averageSalaries = new int[NUM_INPUTS];
int i;
int sumEvens;
for (i =0; i < averageSalaries.length; ++i){
averageSalaries[i]= scnr.nextInt();
}
/* Your code goes here */
System.out.println("Even sum: "+ sumEvens);
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!