Question: Write a recursive method called writeChars that accepts an integer parameter and that prints out a total of characters. The middle character of the output

Write a recursive method called writeChars that accepts an integer parameter and that prints out a total of characters. The middle character of the output should always be an asterisk ( "*" ). If you are asked to write out an even number of characters, then there will be two asterisks in the middle ( "**" ). Before the asterisk(s) you should write out less-than characters ( "<" ). After the asterisk(s) you should write out greater-than characters ( ">" ). Your method should throw an IllegalArgumentException if it is passed a value less than 1. For example, the following calls produce the following output.

Step by Step Solution

3.53 Rating (174 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

public void writeChars int n if ... 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 Building Java Programs A Back to Basics Approach Questions!