fork download
  1.  
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. class MyStrLastIndexOf {
  8.  
  9. public static void main(String a[]){
  10.  
  11. String str=new String("welcome to java");
  12. System.out.println("Last index found at:");
  13. System.out.println(str.lastIndexOf('o'));
  14. }
  15. }
Success #stdin #stdout 0.05s 4386816KB
stdin
Standard input is empty
stdout
Last index found at:
9