A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a Java program to take the last three characters from a given string and add the three characters at both the front and back of the string
Q:

Write a Java program to take the last three characters from a given string and add the three characters at both the front and back of the string

0

Write a Java program to take the last three characters from a given string and add the three characters at both the front and back of the string. String length must be greater than three and more


Test data: "Python" will be "honPythonhon"


Sample Output:

honPythonhon

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.*; 
import java.io.*; 
 public class Exercise84 {
 public static void main(String[] args)
 {
   String string1 = "Python";
    int slength = 3;
    if (slength > string1.length()) {
      slength = string1.length();
    }

    String subpart = string1.substring(string1.length()-3);
    System.out.println(subpart + string1 + subpart);
  }
}

Sample Output:

honPythonhon

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now