Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
String strOrig = "Hello World";
if (strOrig.endsWith("World")) {
System.out.println("ends with World");
} else {
System.out.println("not end with World");
}
}
}