Input Your output Expected output Hello Reverse of "Hello" is "olleH". Reverse of "Hello" is "olleH".

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 19PE
icon
Related questions
Question

import java.util.Scanner;

public class LabProgram {
    // Recursive method to reverse a string
    public static String reverseString(String str) {
        // Base case: if the string is empty or has only one character, return the string as is
        if (str.isEmpty() || str.length() == 1) {
            return str;
        } else {
            // Recursive step: move the first character to the end and reverse the remaining substring
            return reverseString(str.substring(1)) + str.charAt(0);
        }
    }

    public static void main(String[] args) {
        Scanner scnr = new Scanner(System.in);
        String input, result;

        input = scnr.nextLine();

        // Call the reverseString() method
        result = reverseString(input);

        // Output the result
        System.out.printf("Reverse of \"%s\" is \"%s\".%n", input, result);
    }
}

Input
Your output
Expected output
Hello
Reverse of "Hello" is "olleH".
Reverse of "Hello" is "olleH".
Transcribed Image Text:Input Your output Expected output Hello Reverse of "Hello" is "olleH". Reverse of "Hello" is "olleH".
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Constants and Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning