Q:

Write A C++ Program To Print Half Pyramid Using Similar Number In Row

0

Write A C++ Program To Print Half Pyramid Using Similar Number In Row

1
2 2
3 3 3
4 4 4 4
5 5 5 5 5

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include<iostream>
using namespace std;

int main()
{
int i,j,n;
cout<<"Enter the No Of Row\n";
cin>>n;
    for(i=1;i<=n;i++)
    {
        for(j=1;j<=i;j++)
        {
            cout<<i<<" ";
        }
        cout<<"\n";
    }

}

 

Output:

Enter the No Of Row

7

2 2 

3 3 3 

4 4 4 4 

5 5 5 5 5 

6 6 6 6 6 6 

7 7 7 7 7 7 7 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now