Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. package javaBasics1;
  2.  
  3. public class MainMethod {
  4. public static void main(String name[]){
  5. int x = 1,y = 5;
  6. String a = "animals";
  7. System.out.println(a.indexOf("al"));
  8. }
  9. }
  10.  
  11. animals
  12. --
  13. 0123456
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement