標題:
【048】陣列 (二)
[打印本頁]
作者:
tonyh
時間:
2023-3-25 14:22
標題:
【048】陣列 (二)
假設五年級共有四個班, 一班有28人, 二班有33人, 三班有34人, 四班有30人,
試利用陣列與for迴圈, 列出五年級各班的人數.
本帖隱藏的內容需要回復才可以瀏覽
作者:
王捷恩
時間:
2023-3-25 14:50
public class A {
public static void main(String[] args) {
int a[]={28,33,34,30};
for(int i=0; i<4; i++)
System.out.println("year 5 class "+(i+1)+" has "+a[i]+" people");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2