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
public void writeChars int n if ... View full answer
Get step-by-step solutions from verified subject matter experts
