Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created November 18, 2020 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/be55714a8b3d52f240ba33848820a83a to your computer and use it in GitHub Desktop.
Save amankharwal/be55714a8b3d52f240ba33848820a83a to your computer and use it in GitHub Desktop.
#include<iostream>
#include<climits>
using namespace std;
int main(){
int n;
cin>>n;
int arr[n];
for (int i = 0; i <= n; i++){
cin>>arr[i];
}
for(int i = 0; i < n; i++){
for (int j = i; j < n; j++){
for (int k = i; k <= j; k++){
cout<<arr[k]<<" ";
}cout<<endl;
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment