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 main(String[] args){
Scanner scnr = new Scanner(System.in);
ArrayList airportsList = new ArrayList();
int numAirports;
int i;
numAirports = scnr.nextInt();
for (i =0; i < numAirports; ++i){
airportsList.add(scnr.next());
}
/* 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 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!