Advertisement
Guest User

Untitled

a guest
Nov 29th, 2015
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package Point_5;
  2.  
  3. public class Frame_10 {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. String s = "Education is the most powerful weapon which you can use to change the world";
  8. String t = "An inwestment in knowledge pays the best interest";
  9.  
  10. String part1 = s.substring(52,56);
  11. String part2 = t.substring(17,27);
  12. String part3 = s.substring(56);
  13.  
  14. System.out.println(part1 + part2 + part3);
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement