Reverse Array - Java Program
Dhanush
1 min read
Solution in Java:
import java.util.*;
import java.io.*;
class ReverseArray{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int arr[] = new int[n];
for(int i=0; i<n; i++){
arr[i] = sc.nextInt();
}
for(int j=n-1; j>=0; j--){
System.out.print(arr[j] + " ");
} } }
1
Subscribe to my newsletter
Read articles from Dhanush directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
Dhanush
Dhanush
Software Developer