w3resource

Java: Create a new string of 4 copies of the last 3 characters of the original string

Java Basic: Exercise-68 with Solution

Write a Java program to create another string of 4 copies of the last 3 characters of the original string. The original string length must be 3 and above.

Pictorial Presentation:

Java Basic Exercises: Create a new string of 4 copies of the last 3 characters of the original string

Sample Solution:

Java Code:

import java.lang.*;

public class Exercise68 {
    public static void main(String[] args) {
        // Define the main string
        String main_string = "Python 3.0";

        // Extract the last three characters from the main string
        String last_three_chars = main_string.substring(main_string.length() - 3);

        // Repeat the last three characters four times and print the result
        System.out.println(last_three_chars + last_three_chars + last_three_chars + last_three_chars);
    }
}

Sample Output:

3.03.03.03.0 

Flowchart:

Flowchart: Java exercises: Create a new string of 4 copies of the last 3 characters of the original string

Java Code Editor:

Previous: Write a Java program to insert a word in the middle of the another string.
Next: Write a Java program to extract the first half of a string of even length.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.