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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started