嘿,我有一个问题我已经想弄清楚几个小时了,我需要使用嵌套循环来打印以下内容
-----1-----
----333----
---55555---
--7777777--
-999999999-
这就是我到目前为止所拥有的。
public static void Problem6 () {
System.out.println("Problem 6:");
for (int i = 1; i <= 5; i++) {
for (int j = 5; j >= i; j--) {
System.out.print("-");
}
for (int j = 1; j <= 9; j += 2) {
System.out.print(j);
}
for (int j = 5; j >= i; j--) {
System.out.print("-");
}
System.out.println();
}
}
这就是它打印的内容
-----13579-----
----13579----
---13579---
--13579--
-13579-