Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

JAVA - 4 . 6 . 1 :For loops and strings String inputData is read from input. Output the characters of inputData in reverse order,

JAVA-4.6.1:For loops and strings String inputData is read from input. Output the characters of inputData in reverse order, separated by stars ('*').
Ex: If the input is Tia, then the output is:
a*i*T Here's a start of the code that I have to complete: import java.util.Scanner;
public class OutputElements {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
String inputData;
int i;
inputData = scnr.nextLine();
/* Your code goes here */
}
}

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

Step: 3

blur-text-image

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

Database Machine Performance Modeling Methodologies And Evaluation Strategies Lncs 257

Authors: Francesca Cesarini ,Silvio Salza

1st Edition

3540179429, 978-3540179429

More Books

Students also viewed these Databases questions

Question

How is positional feedback obtained in robots?

Answered: 1 week ago