Question: Write a recursive method named repeatString that accepts a string and an integer n as parameters and that returns the string concatenated n times. For

Write a recursive method named repeatString that accepts a string and an integer n as parameters and that returns the string concatenated n times. For example, the call of repeatString("hello", 3) returns "hellohellohello". Do not use any loops; you must use recursion Constraints: Your method should throw an IllegalArgumentException if passed any negative value for n. You are not allowed to construct any structured objects other than Strings (no array, List, Scanner, etc.) and you may not use any loops to solve this problem; you must use recursion Type your Java solution code here: This is a method problem. Write a Java method as described. Do not write a complete program or class; just the method(s) above. | 4 | Indent Sound F/X Highlighting Submit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
