alaminrifat

Arrays - DS - HackerRank with C++

Apr 6th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(){
  6.     int N;
  7.     cin>>N;
  8.     int arr[N];
  9.     for(int i=0;i<N;i++)
  10.     {
  11.         cin>>arr[i];
  12.     }
  13.  
  14.     for(int j = (N-1) ; j>=0;j--)
  15.     {
  16.         cout<<arr[j]<<" ";
  17.     }
  18. }
Add Comment
Please, Sign In to add comment