我有一个像这样的嵌套循环结构:
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
答案 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