Question: ACTIVITY 7 . 1 4 . 2 : ArrayList. 5 2 8 0 4 0 . 3 4 8 9 5 2 8 , qx

ACTIVITY
7.14.2: ArrayList.
528040.3489528, qx3zqy7
Declare and initialize a reference variable for an ArrayList named lengthList that stores items of type Integer. Read integers startLength and numLengths from input. Then, insert the following integers into lengthList:
startLength, startLength **2, startLength **2**2dots, and so on until numLengths integers have been inserted.
Ex: If the input is 23, then the output is:
248
import java.util.Scanner;
import java.util.ArrayList;
public class MakelengthList {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
int startLength;
int numLengths;
int nextLength;
int i;
V* Variable declarations go here */
/ Your code goes here */
I/ Traversing a list using indexes
for lengthList.size(); ++i){
System.out.print(lengthList.get(i)+"");
1
2
3
Feedback?
 ACTIVITY 7.14.2: ArrayList. 528040.3489528, qx3zqy7 Declare and initialize a reference variable

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!