在嵌套循环中并排打印两个数字

时间:2018-10-26 03:25:35

标签: java loops nested-loops

我有一个像这样的嵌套循环结构:

for(int i = 0; i < 7;i++){
for(int j = 0; j < 5 ;j++){
    //do some thing here
  }
}

我想要类似的结果格式:

0 0
1 1
2 2
3 3
4 4 
5 0
6 1

1 个答案:

答案 0 :(得分:1)

这是解决方法:

public static void main(String[] args) {
    for(int i = 0; i < 7;i++){
        System.out.println(i + " "+(i%5));
      }
  }

输出:

0 0
1 1
2 2
3 3
4 4
5 0
6 1