返回列表 發帖

陣列 (二)

假設五年級共有四個班, 一班有28人, 二班有33人, 三班有34人, 四班有30人,
試利用陣列與for迴圈, 列出五年級各班的人數.
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表