本帖最後由 李泳霖 於 2022-1-27 11:53 編輯
假設五年級共有四個班, 一班有28人, 二班有33人, 三班有34人, 四班有30人,
試利用陣列與for迴圈, 列出五年級各班的人數.
- public class Ch35
- {
- public static void main(String args[])
- {
- int n[]={28,33,34,30};
- for(int i=0; i<4; i++)
- System.out.println("5年"+(i+1)+"班: "+n[i]+"人");
- }
- }
複製代碼 |