Board logo

標題: [隨堂測驗]while小星星 [打印本頁]

作者: 葉桔良    時間: 2021-10-16 08:55     標題: [隨堂測驗]while小星星

本帖最後由 葉桔良 於 2021-10-16 15:11 編輯

使用while方法列出以下三角形圖案
[attach]12078[/attach]
  1. public class test
  2. {
  3.    public static void main(String args[])
  4.    {
  5.         int i = 0,j = 0;
  6.         while(i<5){
  7.                 j = 0;
  8.                 while(j<i){
  9.                         System.out.print("*");
  10.                         j++;
  11.                 }
  12.                 System.out.println("");
  13.                 i++;
  14.         }
  15.    }
  16. }
複製代碼

作者: 朱春珠    時間: 2021-10-16 15:04

此帖僅作者可見
作者: 朱春男    時間: 2021-10-16 15:16

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2