Need some help with output triangle of numbers.

Apr 16, 2013 at 11:56pm
I desperately need help with this question.

Write an Output function Triangle, which takes one integer argument SIDE and outputs a triangle of numbers.
For example Triangle(2) outputs:
22
1
and Triangle(5) outputs:
55555
4444
333
22
1


1
2
3
4
5
6
7
8
9
10
11
void Triangle (int SIDE) {
      // insert your C++ code here
}
int main() {
cout << “ How big a triangle do you want: ”;
int x;
cin >> x;
            Triangle(x);
            system(“pause”);
}
Last edited on Apr 17, 2013 at 12:22am
Apr 17, 2013 at 3:34am
I would say your function would look like this:

1
2
3
4
5
6
7
8
9
10
11
12
void Triangle (int SIDE)
{
	int i, j;
	for(i = SIDE; i >= 1; i--)
	{
		for(j = 0; j < i; j++)
		{
			cout << i;
		}
		cout << endl;
	}
}
Topic archived. No new replies allowed.