摘要: 打印数组:1 3 4 10 112 5 9 126 8 137 1415package com.raystorm.test;public class PrintArrayByOddEvenNumber { static void printArray (int height) { int i = 0, j = 0, value = 0; final int row = 10, column = 10; int times = 1; int [][] array = new int [row][column]; ... 阅读全文