C++ Program to display alphanumeric triangle [DEVCPP/GCC]

OBJECTIVE

We intend to make a program which accepts the number of rows from user and display a triangular pattern like below:

1
a b
2 3 4
c d e f
5 6 7 8 9

PROGRAM

// Program to display alphanumeric triangle

#include <iostream>

using namespace std;

int main()
{
        int n,i,j,k=1;
        char ch='a';

        cout<<"\nENTER NUMBER OF ROWS: ";
        cin>>n;

        for(i=1;i<=n;i++)
       {
                for(j=1;j<=i;j++)
                {
                        if(i%2)
                        {
                                cout<<k<<" ";
                                k++;
                        }
                        else
                        {
                               cout<<ch<<" ";
                               ch++;
                        }
               }
               cout<<endl;
       }

       return 0;
}

OUTPUT


C++ Program to shuffle elements in pairs [DEVCPP/GCC]

OBJECTIVE

We have to shuffle the elements of an array such that each element, starting from the beginning of array is interchanged with its successor element.


PROGRAM

// C++ Program to shuffle elements in pairs

#include <iostream>
#define N 10

using namespace std;

int main()
{
        int i,temp,list[N];

        cout<<"ENTER ELEMENTS \n";

        for( i=0 ; i<N ; i++ )
        {
                   cin>>list[i];
        }

        for( i=0 ; i<N ; i=i+2 )
        {
                  temp = list[i];
                  list[i] = list[i+1];
                  list[i+1]=temp;
        }

        cout<<"\nSHUFFLED ELEMENTS \n";

        for( i=0 ; i<N ; i++ )
        {
                  cout<<list[i]<<" ";
        }

        return 0;
}

OUTPUT


FIND US ON FACEBOOK!