Java: Create a new string of 4 copies of the last 3 characters of the original string
Repeat Last 3 Characters
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:
Sample Solution:
Java Code:
Sample Output:
3.03.03.03.0
Flowchart:
For more Practice: Solve these Related Problems:
- Modify the program to repeat the first 3 characters instead.
- Write a program to repeat the last N characters of a string.
- Modify the program to repeat the entire string twice.
- Write a program to reverse the last 3 characters before repeating.
Go to:
PREV : Insert Word in Middle.
NEXT :
Extract First Half.
Java Code Editor:
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.