fork(1) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. String input = "089" ;
  13. int[] codePoints = input.codePoints().toArray() ;
  14. int[] numbers = new int[ codePoints.length ] ;
  15. int index = 0 ;
  16. for ( int codePoint : codePoints )
  17. {
  18. String digit = Character.toString ( codePoint ) ;
  19. int number = Integer.parseInt ( digit ) ;
  20. numbers [ index ] = number ;
  21. index = index + 1 ;
  22. }
  23. System.out.println ( Arrays.toString( numbers ) ) ;
  24. }
  25. }
Success #stdin #stdout 0.09s 56020KB
stdin
Standard input is empty
stdout
[0, 8, 9]