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”);
}