码迷,mamicode.com
首页 > 其他好文 > 详细

2 dimension Array; Table

时间:2014-12-15 18:39:16      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   java   on   

 1 package com.java7;
 2 
 3 class TwoD {
 4     public static void main(String[] args) {
 5         int t, i;
 6         int table[][] = new int[3][4];
 7         
 8         for(t = 0; t < 3; ++t){
 9             for(i = 0; i < 4; ++i){
10                 table[t][i] = (t*4)+i+1;
11                 System.out.print(table[t][i] + " ");
12             }
13             System.out.println();
14         }
15     }
16 }

 

2 dimension Array; Table

标签:style   blog   io   ar   color   sp   for   java   on   

原文地址:http://www.cnblogs.com/fatoland/p/4165322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!