Question: Declare and initialize a reference variable for an ArrayList named weightList that stores items of type Integer. Read intege startWeight and numWeights from input. Then,
Declare and initialize a reference variable for an ArrayList named weightList that stores items of type Integer. Read intege startWeight and numWeights from input. Then, insert the following integers into weightList: startWeight, startWeight startWeight and so on until numWeights integers have been inserted.
Ex: If the input is then the output is:
import java.util.Scanner;
import java.util.ArrayList;
public class MakeWeightList
public static void mainString args
Scanner scnr new ScannerSystemin;
int startWeight;
int numWeights;
int nextweight;
int ;
Variable declarations go here
Your code goes here
Traversing a tist using indexes
for weightlist.size; i
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
