Wednesday, 11 February 2015

C++ Program for calculating SUM of Diagonals of a Square Satrix


/*
Program for DISPLAYING following shape using NESTED LOOP:
e.g: if user enter's "7" the output will be;
                        1
                       121
                      12321
                     1234321
                      12321
                       121
                        1
*/
 
#include<iostream>
#include<iomanip>
using namespace std;
 
int main()
{
    int r;
 
    do
    {
        cout << "Enter size for \"DIAMOND\" (Only +ve ODD Numbers Between 3 & 17)?\t";
        cin >> r;
    } while (r % 2 == 0 || r < 3);
 
    for (int i = 1; i <= r / 2 + 1; i++)            //for upper triangle
    {
        cout << setw(40 - r / 2);         // for moving DIAMOND in the centre
        int s = 0;
        for (int s = 1; s <= (r / 2 + 1) - i; s++)  //controls the number of spaces
            cout << " ";
        for (int c = 1; c <= 2 * i - 1; c++)          //Controls number of "*"
        {
            
            if (c <= i)
                cout << ++s;
            else
                cout << --s;
        }
        cout << "\n";                             //Moves to the next line
    }
    
    for (int i = r / 2; i >= 1; i--)               //for lower triangle
    {
        cout << setw(40 - r / 2);              // for moving DIAMOND in the centre
        int s = 0;
        for (int s = 1; s <= (r / 2 + 1) - i; s++) //controls the number of spaces
            cout << " ";
        for (int c = 1; c <= 2 * i - 1; c++)         //Controls numbers in rows
        {
 
            if (c <= i)
                cout << ++s;
            else
                cout << --s;
        }
        cout << "\n";                          //Moves to the next line
    }
    
    return 0;
}
 
OUTPUT 
 
 
/*
Program for DISPLAYING following shape :
e.g: if user enter's "7" the output will be;
            1     1
            33   33
            555 555
            7777777
            555 555
            33   33
            1     1
*/
 
#include<iostream>
#include<iomanip>
using namespace std;
 
int main()
{
    int size, n = 1, j = 1;
    do
    {
        cout << "Enter size for PATTERN (Only +ve ODD Numbers between 1 & 10)?\t";
        cin >> size;
    } while (size % 2 == 0 || size < 3);
 
    for (int i = 1; i <= size ; i++)       //for upper triangle
    {
        cout << setw(40 - size / 2);      // for moving DIAMOND in the center
        
        if (i <= size / 2)
        {
            for (int c = 1; c <= i; c++)
                cout << n;
            for (int s = 1; s <= size - 2 * i; s++)   //controls the number of spaces
                cout << " ";
            for (int c = 1; c <= i; c++)
                cout << n;
            n += 2;
        }
        
        else if (i==size/2+1)
            for (int c = 1; c <= size; c++)
                cout << n;
        
        else
        {
            n -= 2;
            for (int c = 1; c <= size-i+1; c++)
                cout << n;
            
            for (int s = 1; s <= j; s++)             //controls the number of spaces
                cout << " ";
            j += 2;
            for (int c = 1; c <= size-i+1; c++)
                cout << n;
        }
        
        cout << "\n";                               //Moves to the next line
    }
 
    return 0;
}

 
OUTPUT

No comments:

Post a Comment