fork download
  1. import java.util.*;
  2.  
  3. class ArrayLength
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. String[] x = new String[]{"a", "b", "c"};
  8.  
  9. int n = x.length;
  10.  
  11. System.out.println(n);
  12. }
  13. }
Success #stdin #stdout 0.1s 320576KB
stdin
Standard input is empty
stdout
3