Question: Create a program that creates triangle shapes using brackets or parentheses. If the user inputs an even number, the triangle will be made of parentheses.

Create a program that creates triangle shapes using brackets or parentheses.

If the user inputs an even number, the triangle will be made of parentheses. If the user inputs an odd number, the triangle is composed of brackets. For both even and odd numbers, the user's input determines the height (columns) and width (rows) of the triangle.

You must us if/else repetition statement(s) in your code.

Example:

Enter the triangle height: 10

()

()()

()()()

()()()()

()()()()()

()()()()()()

()()()()()()()

()()()()()()()()

()()()()()()()()()

()()()()()()()()()()

Sample code to use:

if (userInput == 0) { System.out.println("Zero is invalid."); } else if (userInput < 0) { System.out.println("Heights cannot be negative. Number invalid. "); } else { int check = userInput % 2; // Edit code // } }

} } public static void drawTriangle(int userInput, String output) { int height = userInput; String space = " ";

//Finish writing your code here //

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Databases Questions!