CS 117, Backwards!
This is a team assignment.
Create a class called BackString with the following three
methods:
public void iterBackwards(String
text)
This displays the String backwards, using
iteration (for loop).
public void recurseBackwards(String
text)
This displays the String backwards, using
recursion
public static void main(String[]
args)
This is your main method. Put code in here to test
both of your methods by displaying a String of your choice backwards,
once using each method.
You may find the charAt() and length() methods for Strings
useful.
Good luck!