Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts International Edition

Authors: David M. Kroenke

6th Edition International Edition

0133098222, 978-0133098228

More Books

Students also viewed these Databases questions