public class Main { public static void main(String[] args) { // 声明一个长度为5的整数数组 int[] numbers = new int[5]; // 使用for循环给数组赋值 for (int i = 0; i < numbers.length; i++) { numbers[i] = i + 1; } // 打印数组的值 for (int i = 0; i < numbers.length;...