Question: Given the integer array averageTemps with the size of ARR _ VALS, write a for loop that sets sumOdds to the sum of all the

Given the integer array averageTemps with the size of ARR_VALS, write a for loop that sets sumOdds to the sum of all the odd integers in averageTemps.
Ex: If the input is 106,101,33,53,68,108,94,92, then the output is:
Odd sum: 187
import java.util.Scanner;
public class OddOperations {
public static void main(String[] args){
Scanner scnr = new Scanner(System. in);
final int ARR_VALS =8;
int averageTemps = new int [ARR_VALS];
int i;
int sum0dds;
for averageTemps. length; ++i
}
averageTemps [i]= scnr. nextInt () ;
Y* Your code goes here *
 Given the integer array averageTemps with the size of ARR_VALS, write

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!