Answer:
Step-by-step explanation:
The following code is written in Java. It creates a function called stringReverse that takes in one string parameter and uses a recursive algorithm to print out the input string in reverse. The output can be seen in the attached picture below.
void stringReverse(String str)
{
//Check to see if String is only one character or less
if ((str==null) || (str.length() <= 1))
System.out.println(str);
else
{
System.out.print(str.charAt(str.length()-1));
stringReverse(str.substring(0,str.length()-1));
}
}