w3resource

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

Java Collection, ArrayList Exercises: Exercise-22 with Solution

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.

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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/collection/java-collection-exercise-22.php