Write a method appendIfMissing which is passed a String s and a String e (for ending). If s doesn't already end with e, the method returns a new String which consists of the contents of s concatenated with e. It returns s otherwise.
For example, if s refers to the String "lightningbug" and e refers to the String "bug", the method returns "lightningbug".
If s refers to the String "Airplane II", and e refers to the String ": the Sequel", the method returns "Airplane II: the Sequel".

Solved
Show answers

Ask an AI advisor a question