Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Display the pattern power of 2, triangle

C++ For Loop: Exercise-54 with Solution

Write a program in C++ to display the pattern power of 2, triangle.

Sample Solution:-

C++ Code :

#include <iostream>
#include <math.h>
using namespace std;

int main()
{
    int i, j, spc, n, mm, d = 1, k;
    cout << "\n\n Display the pattern like pyramid with power of 2:\n";
    cout << "------------------------------------------------------\n";
    cout << " Input the number of rows: ";
    cin >> n;
    //----------- space for first line ----------------------
    for (i = 1; i <= n * 2 + 2 + 5; i++) //extra 5 spaces is the margin from left
        cout << " ";
    cout << pow(2, 0) << endl;
    for (i = 1; i < n; i++) 
    {
        //----------- printing spaces from 2nd line to end -------
        for (k = 1; k <= n * 2 - d + 5; k++) 
        {
            cout << " ";
        }
        //----------- print upto middle ----------------
        for (j = 0; j < i; j++) 
        {
            mm = pow(2, j);
            cout << mm << "  "; //print 2 spaces
        }
        //------------- print after middle to end -------
        for (j = i; j >= 0; j--) 
        {
            mm = pow(2, j);
            cout << mm << "  "; //print 2 spaces
        }
        d = d + 3;
        cout << endl;
    }
}

Sample Output:

Display the pattern like pyramid with power of 2:
------------------------------------------------------
 Input the number of rows:
                 1
              1  2  1  
           1  2  4  2  1  
        1  2  4  8  4  2  1  
     1  2  4  8  16  8  4  2  1  

Flowchart:

Flowchart: Display the pattern power of 2, triangle.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to display the pattern like right angle triangle with right justified using digits.
Next: Write a program in C++ to display such a pattern for n number of rows using number. Each row will contain odd numbers of number. The first and last number of each row will be 1 and middle column will be the row number. n numbers of columns will appear in 1st row.

What is the difficulty level of this exercise?