標題:
[隨堂測驗]while小星星
[打印本頁]
作者:
葉桔良
時間:
2021-10-16 08:55
標題:
[隨堂測驗]while小星星
本帖最後由 葉桔良 於 2021-10-16 15:11 編輯
使用while方法列出以下三角形圖案
[attach]12078[/attach]
public class test
{
public static void main(String args[])
{
int i = 0,j = 0;
while(i<5){
j = 0;
while(j<i){
System.out.print("*");
j++;
}
System.out.println("");
i++;
}
}
}
複製代碼
作者:
朱春珠
時間:
2021-10-16 15:04
此帖僅作者可見
作者:
朱春男
時間:
2021-10-16 15:16
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2