要打印数组中的所有元素,可以使用for循环遍历数组,并使用System.out.println()方法打印每个元素。以下是示例代码:
public class PrintArrayElements {
public static void main(String[] args) {
int[] numbers = {1, 2, 3, 4, 5};
// 使用for循环遍历数组
for (int i = 0; i < numbers.length; i++) {
// 打印每个元素
System.out.println(numbers[i]);
}
}
}
输出结果为:
1
2
3
4
5