0
我正在試圖讓我把它做成倒三角形。 嘗試了很多次,但我不知道該怎麼做。在java中製作一個倒三角形
我知道的代碼是:
public static void drawPyramide(int lines, char symbol, boolean startDown) {
//TRIANGLE
if(startDown) {
//The triangle up side down should be here.
}
else {
int c = 1;
for (int i = 0; i < lines; i++) {
for (int j = i; j < lines; j++) {
System.out.print(" ");
}
for (int k = 1; k <= c; k++) {
if (k%2==0) System.out.print(" ");
else System.out.print(symbol);
}
System.out.print("\n");
c += 2;
}
}
}
任何建議如何我可以「翻轉」這個三角形?謝謝。
運行後這個輸出是什麼 –
如果你能得到三角形打印正確的一面,只需簡單地反轉循環。 – Max
我得到一個三角知道。但我已經嘗試過了,但我該如何扭轉循環? – user1770961