Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: 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 a new string of 4 copies of the last 3 characters of the original string. The length of the original string 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)
 {
   String main_string = "Python 3.0";
      
   String last_three_chars = main_string.substring(main_string.length() - 3);
   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:

Contribute your code and comments through Disqus.

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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe