Question: Write a recursive function called DrawTriangle ( ) that outputs lines of ' * ' to form a right side up isosceles triangle. Function DrawTriangle
Write a recursive function called DrawTriangle that outputs lines of to form a right side up isosceles triangle. Function DrawTriangle has one parameter, an integer representing the base length of the triangle. Assume the base length is always odd and less than Output spaces before the first on the first line for correct formatting.
Hint: The number of increases by for every line drawn.
Ex: If the input of the program is:
the function DrawTriangle outputs:
Ex: If the input of the program is:
the function DrawTriangle outputs:
Note: No space is output before the first on the last line when the base length is
Ex: If the input of the program is:
the output of the PrintLinkedList function is:
Hint: Output the value of the current node, then call the PrintLinkedList function repeatedly until the end of the list is reached. Refer to the IntNode class to explore any available member functions that can be used for implementing the PrintLinkedList function.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
