Question: import java.io.*; import java.util.Scanner; public class backwardsArray { public static void main(String[] args) { //question 5 from u3d2 worksheet in saiyam's binder. String[] list =

import java.io.*; import java.util.Scanner; public class backwardsArray { public static void main(String[] args) { //question 5 from u3d2 worksheet in saiyam's binder. String[] list = {"one","two","three","four"}; String word = ""; int i,m,n,j; //print array starting from first element System.out.println("Original Array:"); for( i=0;i= 0;j--) { System.out.println(list[j]); } System.out.println(""); } } }

Above is my code i have written so far.I am trying to write a loop that prints every String in an array of strings backwards on its own line.

So the output should be:

eno

owt

eerht

ruof

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!