fork download
  1. public class Main
  2. {
  3. public static void main(String args[])
  4. {
  5. Integer Col = 8;
  6. Integer Row = 200;
  7.  
  8. String[][] list;
  9.  
  10. list = new String [Row][Col];
  11. System.out.println(list.length);
  12.  
  13. }
  14. }
Success #stdin #stdout 0.08s 380160KB
stdin
Standard input is empty
stdout
200