Arrays Introduction

Sort by

recency

|

1359 Discussions

|

  • + 0 comments

    int main() {

    /* Enter your code here. Read input from STDIN. Print output to STDOUT */   
    int n;
    cin>>n;
    vector<int> arr(n);
    for(int i = 0;i<n;i++){
        cin>>arr[i];
    }
    
    for(int i = n-1;i>=0;i--){
        cout<<arr[i]<<" ";
    }
    return 0;
    

    }

  • + 0 comments
    int main() {
        /* Enter your code here. Read input from STDIN. Print output to STDOUT */  
        int n;
        
        cin >> n;
    
        vector<int> myarr(n);
    
        for (int i = 0; i < n; i++) {
            cin >> myarr[i];
        }
        for (int j = n-1; j >= 0; j--) {
            cout << myarr[j] <<" ";
        } 
        return 0;
    }
    
  • + 0 comments

  • + 0 comments

    include

    int main() {
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */   
    int n;
    cin >> n;
    vector<int> arr(n);
    
    for (int i = 0; i < n; i++) {
        cin >> arr[i];
    }
    
    for (int i = n - 1; i >= 0; i--) {
        cout << arr[i];
        if (i != 0) cout << " "; // print space between numbers
    }
    cout << endl;
    return 0;
    

    }

  • + 0 comments
    #include<bits/stdc++.h>
    using namespace std;
    
    int main()
    {
        int n=0;
        cin>>n;
        int a[n]={};
        
        for(int i=0;i<n;i++)
        {
            cin>>a[i];
        }
        for(int i=n-1;i>=0;i--)
        {
            cout<<a[i]<<" ";
        }
        return 0;
    }