Question: Given the integer array dailyTemps with the size of NUM _ VALUES, write a for loop that sums each integer of dailyTemps together until either

Given the integer array dailyTemps with the size of NUM_VALUES, write a for loop that sums each integer of dailyTemps together until either maxSum is greater than or equal to 150 or the end of the array is reached.
Ex: If the input is 816151171210131, then the output is:
Maximum sum: 93 import java.util.Scanner;
public class MaxQuantityCalculator {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
final int NUM_VALUES =9;
int[] dailyTemps = new int[NUM_VALUES];
int i;
int maxSum;
for (i =0; i < dailyTemps.length; ++i){
dailyTemps[i]= scnr.nextInt();

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!