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