java编写一个五行四列的二维数组输出

java编写一个五行四列的二维数组输出... java编写一个五行四列的二维数组输出 展开
 我来答
百度网友b482631
2015-11-04 · TA获得超过787个赞
知道小有建树答主
回答量:654
采纳率:100%
帮助的人:659万
展开全部
	public static void println2() {
for (int i = 1; i <= 5; i++) {
for (int j = 1; j <= 4; j++) {
System.out.print(i * j + "\t");
}
System.out.println();
}
}

这个结果就是

1 2 3 4

2 4 6 8

3 6 9 12

4 8 12 16

5 10 15 20

把每一行看做数组的一条内容

或者先定义一个5*4的二维数组,然后存值进去,再打印出来

	public static void println2() {
int[][] arr = new int[5][4];
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
arr[i][j] = i * j;
}
}
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
System.out.print(arr[i][j] + "\t");
}
System.out.println();
}
}
百度网友951d77399
推荐于2017-06-16 · 超过61用户采纳过TA的回答
知道小有建树答主
回答量:98
采纳率:0%
帮助的人:131万
展开全部
int[][] arr = new int[5][4];
for(int i = 0; i < 5; i++){
    for(int j = 0; j < 4; j++){
        System.out.print(arr[i][j]);
        System.out.print(" ");
    }
    System.out.println("");
}

输入的全是0

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2017-06-16
展开全部


for(int [] ar : arr){
  for(int n : ar){
    System.out.print(n+" ");
  }
  System.out.print("\r\n");
}
System.out.print("\r\n");
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式