commit
31ea320988
|
@ -0,0 +1,33 @@
|
||||||
|
# include <iostream>
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main(int argc, char const *argv[])
|
||||||
|
{ // length of array
|
||||||
|
cout<<"Enter the length of array"<<endl;
|
||||||
|
int n,temp;
|
||||||
|
cin>>n;
|
||||||
|
int arr[n];
|
||||||
|
// Getting elements of array
|
||||||
|
cout<<"Enter the elements of array"<<endl;
|
||||||
|
for (int i = 0; i < n; i++)
|
||||||
|
{
|
||||||
|
cin>>arr[i];
|
||||||
|
}
|
||||||
|
for (int i = 0; i < n; i++)
|
||||||
|
{
|
||||||
|
for(int j = i; j<n; j++)
|
||||||
|
{ // comparing elements of array
|
||||||
|
if(arr[j]<arr[i])
|
||||||
|
{
|
||||||
|
temp = arr[i];
|
||||||
|
arr[i]=arr[j];
|
||||||
|
arr[j]=temp;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for(int i=0; i<n; i++)
|
||||||
|
{
|
||||||
|
cout<<arr[i]<<" ";
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue