Advertisement
Findryan

Untitled

Nov 15th, 2016
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. class enam
  2. {
  3. public static void main(String[] args)
  4. {
  5. String str1 = "Teknik Informatika Istitut Tekologi Sepuluh Nopember";
  6. System.out.println(str1.indexOf("Informatika"));
  7. System.out.println(str1.indexOf("Informatika",10));
  8. System.out.println(str1.lastIndexOf("Matematika"));
  9. System.out.println(str1.lastIndexOf("Matematika",10));
  10. System.out.println(str1.lastIndexOf("Matematika",20));
  11. System.out.println(str1.indexOf(97));
  12. System.out.println(str1.indexOf(97,7));
  13. System.out.println(str1.lastIndexOf(97));
  14. System.out.println(str1.lastIndexOf(97,7));
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement