0
玉傢伙我有這個問題我怎麼簡單的System.out打印
X
XY
XXY
XXYY
XXXYY之間的代碼本 但沒有空行
xxxyyy
這裏是我到目前爲止的代碼
public static void main(String[] args) {
System.out.print("x");
for(int i = 0;i<6;i++){
for(int j = 0;j<i;j++){
System.out.print("x");
}
System.out.println();
}
}
'y'從哪裏來?你想要消除哪些空行? –
如果您的意思是換行符,則是導致該錯誤的'println()'調用。 –