为了账号安全,请及时绑定邮箱和手机立即绑定

java中使用foreach遍历二维数组

public class HelloWorld{
public static void main(String[] args){
int [][]nums={{1,2,3},{4,5,6},{7,8,9}};
for(int[]i:nums){
  for(int j:i){
     
System.out.print(j);
    }
  }
}
}

使用foreach遍历2维数组,输出结果为什么是123456789

而不是

123

456

789

已献出膝盖,求大神指点

正在回答

4 回答

public class HelloWorld{
public static void main(String[] args){
int [][]nums={{1,2,3},{4,5,6},{7,8,9}};
for(int[]i:nums){
  for(int j:i){
      System.out.print(j);
    }
    System.out.println();
  }
}
}


1 回复 有任何疑惑可以回复我~
#1

三英睡貂蝉 提问者

非常感谢!大神,请收下我的膝盖!
2015-07-16 回复 有任何疑惑可以回复我~
#2

ybbzbb 回复 三英睡貂蝉 提问者

已经收下.....
2015-07-17 回复 有任何疑惑可以回复我~
#3

qq_银杏树下的承诺_0

其实本质上还是一个一个数的输出,他只是改变了输出格式,因为你双层foreach内层的foreach临时变量是int形式,他就会以int为最基本单位遍历的缘故。
2018-04-26 回复 有任何疑惑可以回复我~

import java.util.Scanner;

public class Main {

/* 键盘输入以下数字

* 4

* 1

* 5 4

* 6 8 5

*/

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

int n = sc.nextInt();

int[][] dp = new int[n][n];

for(int i=0;i<n;i++) {

for(int j=0;j<i;j++) {

dp[i][j] = sc.nextInt();

}

}for (int[] i : dp) {

for (int j : i) {

System.out.print(j);

}System.out.println();

}for(int i=0;i<n;i++) {

for(int j=0;j<i;j++) {

System.out.print(dp[i][j]+" ");

}System.out.println();

}

}

}


0 回复 有任何疑惑可以回复我~

public class HelloWorld{

public static void main(String[] args){

int [][]nums={{1,2,3},{4,5,6},{7,8,9}};

for(int[]i:nums){

  for(int j:i){

      System.out.print(j);

    }

    System.out.println();

  }

}

}

请参考大神回复

0 回复 有任何疑惑可以回复我~

System.out.println(j);这样写,不过这样也是

1

2

3

4

5

6

7

8

9

这样输出

0 回复 有任何疑惑可以回复我~
#1

三英睡貂蝉 提问者

public class HelloWorld{ public static void main(String[] args){ int [][]nums={{1,2,3},{4,5,6},{7,8,9}}; for(int[]i:nums){ for(int j:i){ System.out.print(j); } System.out.println(); } } } 请参考大神的回复
2015-07-16 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Java入门第一季(IDEA工具)升级版
  • 参与学习       1165240    人
  • 解答问题       17581    个

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

进入课程

java中使用foreach遍历二维数组

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信