Declare and initialize a reference variable for an ArrayList named animals List that stores items of type String. Read integer numAnimals from input. Then, insert numAnimals "sheep at the end of animalsList. Ex: If the input is 3, then the output is: sheep sheep sheep 1 import java.util.Scanner; 2 import java.util.ArrayList; 3 4 public class MakeAnimals List { 5 6 7 8 9 10 11 12 13 14 15 16 17 Pee - public static void main(String[] args) { Scanner scnr = new Scanner (System.in); int numAnimals; int i; /* Variable declarations go here */ /* Your code goes here */ // Traversing a List using indexes for (i = 0; i < animalsList.size(); ++i) { System.out.print(animalsList.get(i) "); + } System.out.println();

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Array Concepts
Section: Chapter Questions
Problem 19RQ
icon
Related questions
Question

New JAVA code can only be added between lines 9 and 10, as seen in image.

Declare and initialize a reference variable for an ArrayList named animals List that stores items of type String. Read integer
numAnimals from input. Then, insert numAnimals "sheep" at the end of animalsList.
Ex: If the input is 3, then the output is:
sheep sheep sheep
1 import java.util.Scanner;
2 import java.util.ArrayList;
TN589
3
4 public class MakeAnimals List {
6
7
FELLE
10
11
12
13
14
& in
15
16
17
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int numAnimals;
int i;
/* Variable declarations go here */
/* Your code goes here */
// Traversing a list using indexes
for (i = 0; i < animalsList.size(); ++i) {
+ ");
"1
}
System.out.print(animalsList.get(i)
System.out.println();
Transcribed Image Text:Declare and initialize a reference variable for an ArrayList named animals List that stores items of type String. Read integer numAnimals from input. Then, insert numAnimals "sheep" at the end of animalsList. Ex: If the input is 3, then the output is: sheep sheep sheep 1 import java.util.Scanner; 2 import java.util.ArrayList; TN589 3 4 public class MakeAnimals List { 6 7 FELLE 10 11 12 13 14 & in 15 16 17 public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int numAnimals; int i; /* Variable declarations go here */ /* Your code goes here */ // Traversing a list using indexes for (i = 0; i < animalsList.size(); ++i) { + "); "1 } System.out.print(animalsList.get(i) System.out.println();
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT