Skip to main content

Posts

Showing posts from January 29, 2019

C++ Program for Bubble Sort

C++ Programming Code for Bubble Sort #include<iostream> using namespace std; int main() {     int a[50], n,i,j,tmp;     cout<<"enter size of array";     cin >>n;     cout<<"enter array elements";     for (i=0; i<n;i++)     {         cin>>a[i];     }     for(i=1;i<n;i++)     {         for(j=0;j<(n-i);j++)             if(a[j]>a[j+1])             {                 tmp=a[j];                 a[j]=a[j+1];                 a[j+1] =tmp;             }     }     cout<<"array after bubble sort";     for(i=0;i<n;++i)         cout<<" "<<a[i];     return 0; }

C++ Program to Add 3X3 Two Matrix using for loop

A Simple C++ program to add two Matrices   #include<iostream> using namespace std; int main() {     int a[3][3], b[3][3], ab[3][3];     int z=3, x=3;     cout<<"\nEnter elements of 1st matrix:\n";     for(int i=0; i<z; i++)     {         for(int j=0; j<x; j++)         {             cin>>a[i][j];         }     }     cout<<"\nEnter elements of 2st matrix:\n";     for(int i=0; i<z; i++)     {         for(int j=0; j<x; j++)         {             cin>>b[i][j];         }     }     //Adding Two matrices     for(int i=0; i<z; i++)     {         for(int j=0; j<x; j++)         {             ab[i][j]=a[i][j]+b[i][j];         }     }     //Displaying the Result     for(int i=0; i<z; i++)     {         for(int j=0; j<x; j++)         {             cout<<ab[i][j]<<" ";         }         cout<<endl;             } }