Question: Write a recursive method called draw Triangle() that outputs lines of * to form a right side up isosceles triangle. Method draw Triangle() has

Write a recursive method called draw Triangle() that outputs lines of "*

 to form a right side up isosceles triangle. Method draw Triangle() has one parameter, an integer representing the base length of the triangle. Assume

Write a recursive method called draw Triangle() that outputs lines of "* to form a right side up isosceles triangle. Method draw Triangle() has one parameter, an integer representing the base length of the triangle. Assume the base length is always odd and less than 20. Output 9 spaces before the first on the first line for correct formatting. Hint: The number of increases by 2 for every line drawn. Ex: If the input of the program is: 3 the method draw Triangle() outputs: Ex: If the input of the program is: 19 the method draw Triangle() outputs: Note: No space is output before the first on the last line when the base length is 19.

Step by Step Solution

3.48 Rating (151 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

public class TriangleDrawer public static void mainString arg... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!