Q:

Write A C++ Program To Print Reverse Half Pyramid Using *

0

Write A C++ Program To Print Reverse Half Pyramid Using *

******
*****
****
***
**
*

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=n;i>=1;i--)
{
for(j=1;j<=i;j++)
{
cout<<"*";
}
cout<<"\n";
}
return 0;
}

 

Output:

Enter the No Of Row

10

**********

*********

********

*******

******

*****

****

***

**

*

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

total answers (1)

Write A C++ Program To Print Half Pyramid Using Nu... >>
<< C++ Program To Print A Given Reverse STAR Pattern...