fork download
  1. import java.util.Scanner;
  2.  
  3. class reverse {
  4.  
  5. /**
  6.   * @param args
  7.   */
  8. public static void main(String[] args) {
  9. System.out.printf("Enter the number of values in array: ");
  10. Scanner scanner = new Scanner(System.in);
  11. int n;
  12. n = scanner.nextInt();
  13.  
  14. int[] a1 = new int[n];
  15. int i;
  16.  
  17. System.out.printf("Enter the value in the array: ");
  18. for (i = 0; i < n; i++){
  19. a1[i] = scanner.nextInt();
  20. }
  21.  
  22. int j;
  23. int k;
  24.  
  25. for (i = 0; i < n/2; i++){
  26. j = a1[i];
  27. k = a1[n-i-1]; //error line;
  28. a1[i]=k;
  29. a1[n-i-1]=j;
  30. }
  31. for(i = 0; i < n; i++){
  32. System.out.print(" "+a1[i]);
  33. }
  34. }
  35. }
Success #stdin #stdout 0.1s 380672KB
stdin
5
1
2
3
4
5
stdout
Enter the number of values in array: Enter the value in the array:  5 4 3 2 1