当前位置:Gxlcms > PHP教程 > 不规则二维数组

不规则二维数组

时间:2021-07-01 10:21:17 帮助过:12人阅读

<无详细内容>
  1. package com.sjzmlb.test;
  2. /**
  3. *
  4. * @author sjzmlb
  5. *
  6. */
  7. public class TestArray {
  8. public static void main(String[] args) {
  9. // -----不规则二维数组 ----
  10. int[][] ints = new int[5][];
  11. for (int i = 0; i < 5; i++) {
  12. ints[i] = new int[i + 1];
  13. for (int j = 0; j < i + 1; j++) {
  14. ints[i][j] = i + 1;
  15. }
  16. }
  17. for (int[] i : ints) {
  18. for (int j : i) {
  19. System.out.print(j);
  20. }
  21. System.out.println();
  22. }
  23. }
  24. }
  1. 1
  2. 22
  3. 333
  4. 4444
  5. 55555

人气教程排行