```java
public class ArrayAccessExample {
public static void main(String[] args) {
// Sample array
int[] numbers = {10, 20, 30, 40, 50};
// Using a traditional for loop
System.out.println("Using traditional for loop:");
for (int i = 0; i < numbers.length; i++) {
System.out.println("Element at index " + i + ": " + numbers[i]);
}
// Using an enhanced for loop (for-each loop)
System.out.println("\nUsing enhanced for loop:");
for (int number : numbers) {
System.out.println("Current element: " + number);
}
}
}
```
This code demonstrates two ways to access values in an array using for loops:
1. Traditional for loop: Uses an index variable `i` to access elements by their position.
2. Enhanced for loop (for-each loop): Directly accesses each element without using an index.
To implement this code:
1. Create a new Java file named `ArrayAccessExample.java`.
2. Copy and paste the code into the file.
3. Compile and run the program.
No additional libraries are required for this basic array manipulation.
Note: The enhanced for loop is generally preferred when you don't need the index of the elements, as it's more concise and less prone to errors.