hello all,
i am trying to make a program using nested for loops that outputs a triangle made of *. so far i have part of the triangle, but am having diffuculty finishing it. my code so far:

#include<iostream> 
#include<conio.h>
using namespace std
void main()
{
      int n = 5;
      char usr = '*'; 
      int x;
      int y;    

       for(y=1;y<=n;y++)
           {
                 for(x=1;x<=y;x++)
                      {
                           cout<<usr;                                                 
                       }
                  cout<<endl;
            }
         getch();
}

it looks like this:
*
**
***
****
*****


but i want it to look like this:
*
**
***
****
*****
****
***
**
*

any help would be appreciated

Well, if you want to do it with loops, you just need to reverse your loop and you'll generate the other side of the pyramid. for (y=n-1;y>=1;y--) {...} should generate the other end.

i tried that loop i put it right befor getch();
i put:

for (y=n-1;y>=1;y--)
	{
		cout<<usr;
	}

and what i got was:
*
**
***
****
*****
****

Correct -- your first attempt was:

for(y=1;y<=n;y++)		// iterate over the number of lines you need to display
{
	for(x=1;x<=y;x++)	// outputs the desired number of '*'s
	{
		...
	}
}

I'm saying you need to reverse that process -- instead of counting 'up' lines, you need to count 'down' now, which is the outer loop I showed. You still need to provide another loop to output the right number of '*'s, though.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.