標題:
巢狀迴圈 - 小星星
[打印本頁]
作者:
tonyh
時間:
2014-6-7 14:22
標題:
巢狀迴圈 - 小星星
本帖最後由 tonyh 於 2014-6-7 14:37 編輯
利用巢狀迴圈, 將符號*整齊排列如下:
*
**
***
****
*****
public class ch21
{
public static void main(String args[])
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
作者:
張瀚仁
時間:
2014-6-7 14:41
public class ch22
{
public class void main(String args[])
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=i;j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
作者:
劉泳鱔
時間:
2014-6-7 14:41
public class ch21
{
public static void main(String args[])
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
作者:
黃崇維
時間:
2014-6-7 14:42
public class ch21
{
public static void main(String args[])
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
作者:
鎧言
時間:
2014-6-7 14:42
public class ch21
{
public static void main(String args[])
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
作者:
林以諾
時間:
2014-6-7 14:43
public class ch21
{
public static void main(String args[])
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2