Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created March 20, 2021 08:55
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/290ef3637a76ebd3c147d80f38459fe5 to your computer and use it in GitHub Desktop.
Save amankharwal/290ef3637a76ebd3c147d80f38459fe5 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];
}
for (int i = 0; i < n; i++){
for (int j = i+1; j<n; j++){
if (arr[j] < arr[i]){
int temp = arr[j];
arr[j] = arr[i];
arr[i] = temp;
}
}
}
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