Answers for "print half pyramid"

C++
0

print half pyramid

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int rows;

    cout << "Enter number of rows: ";
    cin >> rows;

    for(int i = 1; i <= rows; ++i)
    {
        for(int j = 1; j <= i; ++j)
        {
            cout << "* ";
        }
        cout << "\n";
    }
    return 0;
}
Posted by: Guest on June-05-2021

Browse Popular Code Answers by Language