Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created November 13, 2020 12:11
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/b2d334ff59577965ce1839ebd5a4d450 to your computer and use it in GitHub Desktop.
Save amankharwal/b2d334ff59577965ce1839ebd5a4d450 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
int arr[n];
for (int i = 0; i < n; i++){
cin>>arr[i];
}
int counter = 1;
while (counter < n ){
for(int i = 0; i < n - counter; i++){
if (arr[i] > arr[i+1]){
int temp = arr[i];
arr[i] = arr[i+1];
arr[i+1] = temp;
}
}
counter++;
}
for (int i = 0; i < n; i++){
cout<<arr[i]<<" ";
}cout<<endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment