標題:
[8-1]陣列(一)
[打印本頁]
作者:
李泳霖
時間:
2023-11-17 10:42
標題:
[8-1]陣列(一)
本帖最後由 李泳霖 於 2024-1-9 11:16 編輯
int[] scores = { 50, 60, 70, 30, 20 };
System.Console.WriteLine(scores[0]);
System.Console.WriteLine(scores[1]);
System.Console.WriteLine(scores[2]);
System.Console.WriteLine(scores[3]);
System.Console.WriteLine(scores[4]);
scores[0] = 10;
System.Console.WriteLine(scores[0]);
//創建陣列當下不知道要存放甚麼?
//創建一個空陣列
string[] n = new string[3];
n[0] = "Leo";
n[1] = "Mary";
n[2] = "Kevin";
System.Console.WriteLine(n[0]);
System.Console.WriteLine(n[1]);
System.Console.WriteLine(n[2]);
複製代碼
假設五年級共有8個班: 1班有30人, 2班有31人, 3班有33人, 4班有32人, 5班有31人, 6班有35人, 7班有28人, 8班有29人. 試利用陣列與for迴圈, 列出五年級各班的人數.
int[] nums = { 30, 31, 33, 32, 31, 35, 28, 29 };
for (int i = 0; i < 8; i++)
System.Console.WriteLine("5年"+(i+1)+"班有"+nums[i]+"人");
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2