提交 47520506 编写于 作者: somber dake's avatar somber dake

Add new file

上级 324c4235
package test;
public class InputArray {
public static void main (String args[]) {
int []a = {100,200,300};
System.out.println("a数组的长度="+a.length);
System.out.println("a数组的引用="+a);
int b[][] = {{1},{1,1},{1,2,1},{1,3,3,1},{1,4,6,4,1}};
System.out.println("b的一维数组的个数="+b.length);
System.out.println(b[4][2]);
b[4]=a;
System.out.println(b[4][2]);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册