这项作业的目标是创建一个嵌套的 for 循环来打印:
0 1 2 3
1 2 3 4
2 3 4 5
3 4 5 6
虽然我自己在 java 上尝试过代码,但我被告知存在问题。
我决定使用第三个变量 x,它允许代码正常运行,但我也被告知在没有它的情况下重做代码。尽管我可能会尝试思考这将如何运作,但不幸的是我被困住了
public class inputOutputExample{
public static void main(String[] args) {
int x = 0;
for (int i = 1; i<=4; i++) {
for (int j=1; j<=4; j++) {
System.out.print(x+ " ");
x++;
}
x = x-3;
System.out.println();
}
}
}
有人可以帮助仅使用 i 和 j 重做代码吗?我会很感激。谢谢!
慕侠2389804
翻阅古今
倚天杖
DIEA
跃然一笑
相关分类