w3resource

Java: Print all the elements of a ArrayList using the position of the elements


Write a Java program to print all the elements of an ArrayList using the elements' position.

Pictorial Presentation:

Java Collection, ArrayList Exercises: Print all the elements of a ArrayList using the position of the elements

Sample Solution:-

Java Code:

import java.util.ArrayList;
  public class Exercise22 {
    public static void main(String[] args) {
  ArrayList <String> c1 = new ArrayList <String> ();
  c1.add("Red");
  c1.add("Green");
  c1.add("Black");
  c1.add("White");
  c1.add("Pink");
  System.out.println("\nOriginal array list: " + c1);
  System.out.println("\nPrint using index of an element: ");
  int no_of_elements = c1.size();
  for (int index = 0; index < no_of_elements; index++)
   System.out.println(c1.get(index));
 }
}

Sample Output:

Original array list: [Red, Green, Black, White, Pink]                  
                                                                       
Print using index of an element:                                       
Red                                                                    
Green                                                                  
Black                                                                  
White                                                                  
Pink 

Flowchart:

Flowchart: Print all the elements of a ArrayList using the position of the elements.

For more Practice: Solve these Related Problems:

  • Write a Java program to print all elements of an ArrayList along with their indices using a for loop.
  • Write a Java program to iterate through an ArrayList using a traditional for-loop and print each element’s position and value.
  • Write a Java program to print elements of an ArrayList using Java streams with index tracking via IntStream.range().
  • Write a Java program to format and display each element of an ArrayList with its corresponding position in a tabular format.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Replace the second element of a ArrayList with the specified element.
Next: Append the specified element to the end of a linked list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.