Question: Integer numAirports is read from input. Then, numAirports strings are read from input and inserted at the end of airportsList. Output every element located at
Integer numAirports is read from input. Then, numAirports strings are read from input and inserted at the end of airportsList. Output every element located at an odd index in airportsList. End each output with a space.import java.util.Scanner;
import java.util.ArrayList;
public class AirportsListSearch
public static void mainString args
Scanner scnr new ScannerSystemin;
ArrayList airportsList new ArrayList;
int numAirports;
int i;
numAirports scnrnextInt;
for i ; i numAirports; i
airportsList.addscnrnext;
Your code goes here
System.out.println;
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
