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
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
Get step-by-step solutions from verified subject matter experts
