標題:
巢狀迴圈 - 小星星 (一)
[打印本頁]
作者:
tonyh
時間:
2021-11-13 10:01
標題:
巢狀迴圈 - 小星星 (一)
利用巢狀回圈, 將符號*整齊排列成如下之三角形:
public class Ch19
{
public static void main(String args[])
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=5-i; j++)
System.out.print(" ");
for(int k=1; k<=2*i-1; k++)
System.out.print("*");
System.out.println();
}
}
}
複製代碼
作者:
袁華岑
時間:
2021-11-13 11:23
public class Star {
public static void main(String[] args) {
for(int i = 1; i <= 5; i++){
for(int j = 1; j <= 5-i; j++){
System.out.print(" ");
}
for(int k = 1; k <= 2*i-1; k++){
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2