Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. package Lesson1;
  2.  
  3. public class LessonOne {
  4.  
  5. public static void main(String[] args) {
  6.  
  7.  
  8. String i1 = "use ";
  9. String i2 = "knowledge ";
  10. String i3 = "to change the world ";
  11. String s = "Education is the most powerful weapon which you can use to change the world ";
  12. String t = "An investment in knowledge pays the best interest";
  13. String st = s + t;
  14.  
  15.  
  16. System.out.print(st.substring(st.indexOf(i1), st.indexOf(i1)+i1.length()));
  17. System.out.print(st.substring(st.indexOf(i2), st.indexOf(i2)+i2.length()));
  18. System.out.print(st.substring(st.indexOf(i3), st.indexOf(i3)+i3.length()));
  19.  
  20.  
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement