forked from joharbatta/DataStructure-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrevarr.java
More file actions
23 lines (18 loc) · 394 Bytes
/
revarr.java
File metadata and controls
23 lines (18 loc) · 394 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.util.*;
class revarr
{
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 i=n-1;i>=0;i--)
{
System.out.print(arr[i]+" ");
}
}
}