输出量public class FormattedTablePrint { public static void printRow(int[] row) { for (int i : row) { System.out.print(i); System.out.print("t"); } System.out.println(); } public static void main(String[] args) { int twoDm[][]= new int[7][5]; int i,j,k=1; for(i=0;i<7;i++) { for(j=0;j<5;j++) { twoDm[i][j]=k; k++; } } for(int[] row : twoDm) { printRow(row); } }}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
当然,您可以像其他答案中提到的那样交换7和5,以获得每行7。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)