Board logo

標題: 陣列 (二) [打印本頁]

作者: 鄭繼威    時間: 2023-6-7 21:18     標題: 陣列 (二)

本帖最後由 鄭繼威 於 2023-6-14 20:10 編輯

假設五年級共有四個班, 一班有28人, 二班有33人, 三班有34人, 四班有30人,
試利用陣列與for迴圈, 列出五年級各班的人數.

  1. public class Ch35
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n[]={28,33,34,30};
  6.         for(int i=0; i<4; i++)
  7.             System.out.println("5年"+(i+1)+"班: "+n[i]+"人");
  8.     }
  9. }
複製代碼

作者: 李彣    時間: 2023-6-14 20:01

  1. public class B
  2. {

  3.         public static void main(String[] args)
  4.         {
  5.                 String a[]={"28","33","34","30"};
  6.         for(int i=0; i<4; i++)
  7.         {
  8.             System.out.println("五年"+(i+1)+"班有"+a[i]+"人");
  9.         }
  10.         }

  11. }
複製代碼

作者: 林劭杰    時間: 2023-6-14 20:04

  1. public class Ed
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int a[]={28,33,34,30};
  6.         for(int i=0; i<=3; i++)
  7.         {
  8.              System.out.println("五年"+(i+1)+"班: "+a[i]+"人");
  9.         }
  10.     }
  11. }
複製代碼

作者: 林劭澧    時間: 2023-6-14 20:05

  1. public class Ch01
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.         String a[]={"28","33","34","30"};
  6.                 for(int i=0; i<4; i++)
  7.                         {
  8.                                 System.out.println("五年"+(i+1)+"班有"+a[i]+"人");
  9.                         }
  10.         }
  11. }
複製代碼

作者: 黃裕恩    時間: 2023-6-14 20:06

  1. package test;

  2. public class Test
  3. {

  4.         public static void main(String[] args)
  5.         {
  6.         String a[]={"28","33","34","30"};
  7.         for(int i=0; i<=3; i++)
  8.         {
  9.         System.out.println("五年"+(i+1)+"班有"+a[i]+"人");
  10.         }
  11.         }

  12. }
複製代碼





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