This is my array code and I need to print it in reverse.
public class Array1D {
public static void main(String[] args) {
int[] array = new int[3];
array[0] = 1;
array[1] = 2;
array[2] = 5;
for (int i = 0; i < array.length; i++) { //loop
System.out.print("array["+i+"]=");
System.out.println(array[i] + " ");
}
System.out.println("the last element in the matrix = " + array[array.length - 1]); // finding the last element in the array
System.out.println(" ");
}
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…