Java For Loop High To Low

[Solved] Java For Loop High To Low | Swift - Code Explorer | yomemimo.com
Question : java for loop high to low

Answered by : fancy-flatworm-7imy9ovj7bjb

public class Reverse { public static void main(String [] args){ int i, j; System.out.print("Countdown\n"); int[] numIndex = new int[10]; // array with 10 elements. for (i = 0; i<10 ; i++) { // from 0 to 9 numIndex[i] = i;// element i = number of iterations (index 0=0, 1=1, ect.) } for (j=9; j>=0; j--){ // from 9 to 0 System.out.println(numIndex[j]);//indexes should print in reverse order from here but it throws an exception? } }
}

Source : https://stackoverflow.com/questions/16952645/reverse-for-loop-for-array-countdown | Last Update : Sat, 18 Jun 22

Answers related to java for loop high to low

Code Explorer Popular Question For Swift