I have created an array and i want to print the array elements backwards. I'm completely lost on how to do that. I was thinking I might need to convert this array to a char array. The example below is the method I used to print out the elements in the array. I need a new method that prints each word backwards.
Example:
Bird
DriB
public static void t(String [] list) throws IOException
{
for (int i = 0; i <list.length; i++)
{
System.out.println(list[i]);
}
}