Board logo

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

作者: 李泳霖    時間: 2024-1-16 16:22     標題: 陣列(一)

本帖最後由 李泳霖 於 2024-1-16 16:32 編輯
  1. int[] scores = { 50, 60, 70, 30, 20 };
  2. System.Console.WriteLine(scores[0]);
  3. System.Console.WriteLine(scores[1]);
  4. System.Console.WriteLine(scores[2]);
  5. System.Console.WriteLine(scores[3]);
  6. System.Console.WriteLine(scores[4]);
  7. scores[0] = 10;
  8. System.Console.WriteLine(scores[0]);

  9. //創建陣列當下不知道要存放甚麼?
  10. //創建一個空陣列
  11. string[] n = new string[3];
  12. n[0] = "Leo";
  13. n[1] = "Mary";
  14. n[2] = "Kevin";
  15. System.Console.WriteLine(n[0]);
  16. System.Console.WriteLine(n[1]);
  17. System.Console.WriteLine(n[2]);
複製代碼

作者: 陳品諺    時間: 2024-1-16 16:40

此帖僅作者可見




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