Что не так???
package com.javarush.task.pro.task05.task0505;
import java.util.Scanner;
/*
Reverse
*/
public class Solution {
public static void main(String[] args) {
Scanner v = new Scanner(System.in);
int c = v.nextInt();
int[]chislo = new int[c];
for(int i = 0; i < c; i++){
chislo[i] = v.nextInt();
}
if (i % 2 == 0){
for (int i = chislo.length; i <=0; i++){
chislo[i] = chislo.length - i;
System.out.println(chislo[i]);
}
}
else
for (int i =0; i <chislo.length; i++){
System.out.println(chislo[i]);
}
}
}