Q:

Write A C++ Program To Sort An Array Using BUBBLE SORT TECHNIQUE

belongs to collection: Array Programs In C++ Programming

0

Write A C++ Program To Sort An Array Using BUBBLE SORT TECHNIQUE

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include<iostream>
using namespace std;
int main()
{
 int a[100],i,n,j,temp;
 cout<<"Enter the size of array\n\n";
 cin>>n;
 cout<<"Enter the element\n\n";
 for(i=0;i<n;i++)
 {
  cin>>a[i];
 }

 for(i=0;i<n;i++)
  for(j=i;j<n;j++)
   if(a[i]>=a[j])
   {
    temp=a[i];
    a[i]=a[j];
    a[j]=temp;
   }
 cout<<"Array In Bubble Sort Are\n\n";
  for(i=0;i<n;i++)
 {
  cout<<a[i]<<" ";
 }

}

 

Output:

Enter the size of array

5

Enter the element

32

23

12

51

21

Array In Bubble Sort Are

 

12 21 23 32 51 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write A C++ Program To Merge Two Array In Third A... >>
<< C++ Program To Check Array Is Armstrong Or Not...