I need like this...Please guide me how to make it.
*
* *
* *
* *
* * * * *
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Nilesh JadavPosted Aug 25, 2015, 9:39 AM
int main()
// endl is for new line
{
cout<<"\"Hollow Triangle Shape\"\n\n";
int z=1;
for (int i=0; i<7; i++)
{
for (int j=7; j>i; j--)
{
cout<<" "; // displaying space here
}
cout<<"*"; // displaying asterisk here
if (i!=0)
{
for (int k=1; k<=z; k++)
{
cout<<" ";
}
cout<<"*";
z+=2;
}
cout<
}
for (int i=0; i<=z+1; i++)
{
cout<<"*";
}
return 0;
}
intmain() {//Declaring the variables.introws, position;//Prompts user to enter number of rows.printf("Enter the number of rows in the triangle: ");scanf("%d", &rows);//Prints the first row of the triangle.for(position = 1; position <= rows-1; position++)printf(" ");printf("*\n");//Prints the middle part of the triangle.//Prints the last row of the triangle.for(position = 1; position <= rows*2-1; position++)printf("*");return0;Nilesh JadavPosted Aug 26, 2015, 2:22 AM
VikramPosted Aug 26, 2015, 2:04 AM