注意:'#'代表'空間'在這裏。 下面是說明如何我試着寫程序代碼片段: -在Java(BlueJ)中打印此模式的可能邏輯是什麼?
//Pattern to be printed:-
/* ##1
* #121
* 12321
* #121
* ##1
*/
for(int i=n;i>=1;i--)
{
for(int j=n-3;j>=0;j--)
{
System.out.print(" ");
for(int k=i-2;k>=1;k--)
{
System.out.print(k);
}
System.out.println();
}
}