標題:
巢狀迴圈 - 小星星 (一)
[打印本頁]
作者:
tonyh
時間:
2019-1-23 13:20
標題:
巢狀迴圈 - 小星星 (一)
利用巢狀回圈, 將符號*整齊排列成如下之三角形:
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();
}
}
}
複製代碼
作者:
趙一鳴
時間:
2019-1-23 13:34
public class Ch09
{
public static void main(String args[])
{
for(int i=1; i<=5; i++)
{
for(int j=5; j>=i; j--)
System.out.print(" ");
for(int k=1; k<=2*i-1; k++)
System.out.print("*");
System.out.println();
}
}
}
複製代碼
作者:
王騰立
時間:
2019-1-23 13:35
public class Ch11
{
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();
}
}
}
複製代碼
作者:
孫焌仁
時間:
2019-1-23 13:36
public class Ch19
{
public static void main(String args[])
{
for(int k=1; k<=5; k++)
{
for(int f=1; f<=5-k; f++)
System.out.print(" ");
for(int c=1; c<=2*k-1; c++)
System.out.print("*");
System.out.println();
}
}
}
複製代碼
作者:
楊于暄
時間:
2019-1-23 13:36
public class Ch12
{
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();
}
}
}
複製代碼
作者:
林育鋐
時間:
2019-1-23 13:45
本帖最後由 林育鋐 於 2019-1-23 13:48 編輯
public class Ch08
{
public static void main(String args[])
{
int i,j,k;
for(i=1;i<6;i++){
for(j=1;j<=5-i;j++){
System.out.print(" ");
}
for(k=1;k<=2*i-1;k++){
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
作者:
楊貳鈞
時間:
2019-1-23 13:53
public class Ch12
{
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();
}
}
}
複製代碼
作者:
may
時間:
2019-1-23 14:41
public class Ch15 {
public static void main(String[] args) {
for(int i=0;i<=5;i++)
{
for(int j=1;j<=5-i;j++)
{
System.out.print(" ");
}
for(int k=1;k<=i*2-1;k++)
{
System.out.print("*");
}
System.out.println();
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2