Question: Given the integer array yearlyMiles with the size of ARR _ VALS, write a for loop that sets sumEvens to the sum of all the
Given the integer array yearlyMiles with the size of ARRVALS, write a for loop that sets sumEvens to the sum of all the even integers in yearlyMiles.
Ex: If the input is then the output is:
Even sum:
import java.util.Scanner;
public class EvenSum
public static void mainString args
Scanner scnr new ScannerSystemin;
final int ARRVALS ;
int yearlyMiles new intARRVALS;
int i;
int sumEvens;
for i ; i yearlyMiles.length; i
yearlyMilesi scnrnextInt;
Your code goes here
System.out.printlnEven sum: sumEvens;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
