Question: 1 0 . 1 6 LAB: Drawing an upside down triangle Write a recursive method called drawTriangle ( ) that outputs lines of ' *
LAB: Drawing an upside down triangle
Write a recursive method called drawTriangle that outputs lines of to form an upside down isosceles triangle. Method 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 last line for correct formatting.
Hint: The number of decreases by for every line drawn.
Ex: If the input of the program is:
the method drawTriangle outputs:
Ex: If the input of the program is:
the method drawTriangle outputs:Note: No space is output before the first on the first line when the base length is
CODE:
import java.util.Scanner;
public class LabProgram
TODO: Write recursive drawTriangle method here.
public static void mainString args
Scanner scnr new ScannerSystemin;
int baseLength;
baseLength scnrnextInt;
drawTrianglebaseLength;
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
