Board logo

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

作者: tonyh    時間: 2014-6-28 14:46     標題: 陣列 (二)

本帖最後由 tonyh 於 2014-6-28 15:14 編輯

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

[attach]912[/attach]
  1. public class ch34
  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. }
複製代碼

作者: 張瀚仁    時間: 2014-6-28 15:05

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



  10.     }
  11. }
複製代碼

作者: 劉泳鱔    時間: 2014-6-28 15:08

  1. public class ch34
  2. {
  3.     public static void main(String args[])
  4.     {
  5.           int a[]={28,34,38,40};
  6.           for(int i=0; i<=3; i++)
  7.                 System.out.println("五年"+(i+1)+"班:"+a[i]+"人");

  8.     }
  9. }
複製代碼

作者: 鎧言    時間: 2014-6-28 15:09

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

作者: 林以諾    時間: 2014-7-4 20:29

  1. public class ch34
  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. }
複製代碼

作者: 黃崇維    時間: 2014-7-4 20:34

  1. public class ch34
  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. }
複製代碼

作者: 許逸群    時間: 2014-8-26 15:47

  1. public class ch34
  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. }
複製代碼





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