Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Put Your Data To Work 52 Tips And Techniques For Effectively Managing Your Database

Authors: Wes Trochlil

1st Edition

0880343079, 978-0880343077

More Books

Students also viewed these Databases questions

Question

What are the functions of top management?

Answered: 1 week ago

Question

Bring out the limitations of planning.

Answered: 1 week ago

Question

Why should a business be socially responsible?

Answered: 1 week ago

Question

Discuss the general principles of management given by Henri Fayol

Answered: 1 week ago