Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 ARR_VALS, write a for loop that sets sumEvens to the sum of all the even integers in yearlyMiles.
Ex: If the input is 6677109893294, then the output is:
Even sum: 192
import java.util.Scanner;
public class EvenSum {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
final int ARR_VALS =6;
int[] yearlyMiles = new int[ARR_VALS];
int i;
int sumEvens;
for (i =0; i < yearlyMiles.length; ++i){
yearlyMiles[i]= scnr.nextInt();
}
/* Your code goes here */
System.out.println("Even sum: "+ sumEvens);
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Main Memory Database Systems

Authors: Frans Faerber, Alfons Kemper, Per-Åke Alfons

1st Edition

1680833243, 978-1680833249

More Books

Students also viewed these Databases questions

Question

What is the purpose of the Salary Structure Table?

Answered: 1 week ago

Question

What is the scope and use of a Job Family Table?

Answered: 1 week ago