Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Integer numWeights is read from input. Then, numWeights integers are read from input and inserted at the end of weightList. Assign sumOfWeights with the sum

Integer numWeights is read from input. Then, numWeights integers are read from input and inserted at the end of weightList. Assign sumOfWeights with the sum of all the elements in weightList.
Ex: If the input is:
3
423129
then the output is:
102
import java.util.Scanner;
import java.util.ArrayList;
public class WeightListSum {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
ArrayList weightList = new ArrayList();
int numWeights;
int sumOfWeights;
int i;
numWeights = scnr.nextInt();
for (i =0; i < numWeights; ++i){
weightList.add(scnr.nextInt());
}
/* Your code goes here */
System.out.println(sumOfWeights);
}
}

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

Recommended Textbook for

Microsoft Outlook 2023

Authors: James Holler

1st Edition

B0BP9P1VWJ, 979-8367217322

More Books

Students also viewed these Databases questions

Question

Discuss all branches of science

Answered: 1 week ago