ques 6

Given an integer n. Print a pyramid made up of symbol '*' of height n.

Example:

Input:  n = 3

Output:

* *** *****

Approach:

C++

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n = 3;

    for (int i = 1i <= ni++)
    {
        for (int j = 1j <= n - ij++)
            cout << " ";
        for (int k = 0k < 2 * i - 1k++)
            cout << "*";
        cout << "\n";
    }
    cout << "\n";

    return 0;
}


No comments:

Post a Comment