Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

Step: 3

blur-text-image

Ace Your Homework with AI

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

Get Started

Students also viewed these Databases questions