Computers and Technology
Computers and Technology, 29.06.2021 20:20, stdias

Debug the recursive reverseString method, which is intended to return the input String str reversed (i. e. the same characters but in reverse order). Use the runner class to test this method but do not write your own main method or your code will not be graded correctly.
public class U10_L2_Activity_One
{
public static String reverseString(String str)
{
if (str. length() < 0)
{
return str;
}
s = reverseString(str. substring(2)) + str. substring(0,1);
}
}
Runner's code (don't change):
import java. util. Scanner;
public class runner_U10_L2_Activity_One
{
public static void main(String[] args)
{
System. out. println("Enter string:");
Scanner scan = new Scanner(System. in);
String s = scan. nextLine();
System. out. println("Reversed String: " + U10_L2_Activity_One. reverseString(s));
}
}

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 17:00, ruddymorales1123
What allows you to create a wireless connection among your smart devices
Answers: 2
image
Computers and Technology, 22.06.2019 19:20, ChaosMind
Write a program that reads a file consisting of students’ test scores in the range 0–200. it should then determine the number of students having scores in each of the following ranges: 0–24, 25–49, 50–74, 75–99, 100–124, 125–149, 150–174, and 175–200. output the score ranges and the number of students. (run your program with the following input data: 76, 89, 150, 135, 200, 76, 12, 100, 150, 28, 178, 189, 167, 200, 175, 150, 87, 99, 129, 149, 176, 200, 87, 35, 157, 189.)
Answers: 3
image
Computers and Technology, 22.06.2019 20:00, ayoismeisalex
When you mouse over and click to add a search term this(these) boolean operator(s) is(are) not implied. (select all that apply)?
Answers: 1
image
Computers and Technology, 23.06.2019 13:00, jaelynnm
Donnie does not have powerpoint. which method would be best for elana to save and share her presentation as is? a pdf a doc an rtf a ppt
Answers: 3
Do you know the correct answer?
Debug the recursive reverseString method, which is intended to return the input String str reversed...

Questions in other subjects: