Skip to content

Instantly share code, notes, and snippets.

@edinak1
Created October 17, 2015 19:23
Show Gist options
  • Save edinak1/be06ddc76b6448b410da to your computer and use it in GitHub Desktop.
Save edinak1/be06ddc76b6448b410da to your computer and use it in GitHub Desktop.
package homeWork1;
public class ChangeTheWolrd {
public static void main(String[] args) {
String s="Education is the most powerful weapon which you can use to change the world.";
String t="An investment in knowledge pays the best interest.";
System.out.print("\""+s.substring(s.indexOf("use"),s.indexOf("use")+"use".length())+" "+
t.substring(t.indexOf("knowledge"),t.indexOf("knowledge")+"knowledge".length())+" "+
s.substring(s.indexOf("to"),s.length()-1)+"\"");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment