Live Demo

public class Tester {
 ">


















Single dimensional array in Java



Following is a simple example of a single dimensional array.

Example

 Live Demo

public class Tester {
   public static void main(String[] args) {
      double[] myList = {1.9, 2.9, 3.4, 3.5};
      // Print all the array elements
      for (double element: myList) {
         System.out.print(element + " ");
      }
   }
}

Output

1.9 2.9 3.4 3.5
Updated on: 2020-06-17T08:12:12+05:30

929 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements