我是java新手,並且參加了一個介紹課程。使用嵌套循環在java中創建一個包含星號的框
我已經能夠找出我的問題的大部分,但我被困在最後一步。
最終的結果應該是這樣使用四個或更少或者是System.out.print System.out.println語句:
*******
* *****
* ****
* ***
* **
* *
*******
,我創造了這個
*******
* *****
* ****
* ***
* **
* *
*
這是我的代碼。有什麼你們可以看到,可以幫助嗎?
public class StarPatterns {
public static void main(String[] args) {
int col;
int row;
for (row = 6; row >= 0 ; row--) {
if (row >= 0)
System.out.print("*");
for (col = row; col < 6; col++) {
System.out.print(" ");
}
for (col = row; col > 0; col--) {
System.out.print("*");
}
System.out.println();
}
}
}
什麼確切的要求是什麼?您可以使用一個只包含整個輸出的println來完成此操作。 – jonderry 2014-10-11 21:01:33
他們想要循環來創建圖像。 – dcit17 2014-10-11 21:03:00