belongs to collection: Array Programs In C++ Programming
Write A C++ Program To Sort An Array Using BUBBLE SORT TECHNIQUE
#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
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
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