Please help me in java!!!!! The method below was presented in the course documen
ID: 3890096 • Letter: P
Question
Please help me in java!!!!!
The method below was presented in the course documents:
question in the picture
1. The method below was presented in the course doc import java.io.* public class Driver f public static void main (Stringl args) throws java.io. IOException ( System.out.println ("Enter string: ") foo ): public static void foo() throws java.io. IOException t char c= (char) System.in.read(); foo() System.out.print (c) i Its purpose is to reverse the characters in an input stream. For example,if the input to the method is: HELLO then the output produced by the method is: .OLLEH See if you can modify the method so the period does not appear in the output stream. Note that I do not want you to give as the solution: System.out.print (c)iExplanation / Answer
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
(The input needs to be in here)}}
public static String rev(String str) {
String reversed = "hello there";
for (int i = 0; i < str.length(); i++) {
reversed = str.charAt(i) + reversed;
}
return reversed;
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.