fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String s = "xarxatxm";
  9. int pos = -1;
  10. while (true) {
  11. pos = s.indexOf('x', pos+1);
  12. if (pos < 0) break;
  13. System.out.println(pos);
  14. }
  15. }
  16. }
Success #stdin #stdout 0.06s 380224KB
stdin
Standard input is empty
stdout
0
3
6