码迷,mamicode.com
首页 > 编程语言 > 详细

java简单数组定义

时间:2017-05-13 20:08:43      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:ati   数组   print   int   class   void   sys   rgs   ring   


public class Shuzu {

static int[] array = new int[] { 32, 2, 2, 5, 45, };

int[] array1[] = new int[10][20];
int[][] array2=new int[2][3];
int array3[][] =new int[2][3];

int[][] c = new int[][]{{2,2},{3,3},{2,3}};
int[][] c1 = {{2,2},{3,3},{2,3}};

public static void main(String[] args) {
for (int i : array) {
System.out.print(i + "\t");
}

System.out.println();

int[] a = { 32, 2, 5, 2 };
for (int i : a) {
System.out.print(i + "\t");
}

System.out.println();
int[] b = new int[5];

}
}

java简单数组定义

标签:ati   数组   print   int   class   void   sys   rgs   ring   

原文地址:http://www.cnblogs.com/Yxxxxx/p/6849900.html

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