Created
February 15, 2016 13:52
-
-
Save alexejVasko/fb9ab7302e11a16cbd7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class StrokaPodstanovka { | |
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."; | |
int use = s.indexOf("use"); | |
int knowledge = t.indexOf("knowledge"); | |
int to = s.indexOf("to"); | |
System.out.print(s.substring(use, use+4)); | |
System.out.print(t.substring(knowledge, knowledge+10)); | |
System.out.print(s.substring(to, s.length())); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment