Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

อาร์เรย์หลายมิติที่ง่ายที่สุดใน C # คืออะไร


อาร์เรย์หลายมิติที่ง่ายที่สุดใน C # คืออาร์เรย์สองมิติ อาร์เรย์ 2 มิติถือได้ว่าเป็นตารางซึ่งมีจำนวนแถว x และจำนวนคอลัมน์ y

อาร์เรย์หลายมิติสามารถเริ่มต้นได้โดยการระบุค่าในวงเล็บสำหรับแต่ละแถว อาร์เรย์ต่อไปนี้มี 4 แถว และแต่ละแถวมี 4 คอลัมน์

int [,] a = new int [4,4] {
   {0, 1, 2, 3} , /* initializers for row indexed by 0 */
   {4, 5, 6, 7} , /* initializers for row indexed by 1 */
   {8, 9, 10, 11} /* initializers for row indexed by 2 */
   {12, 13, 14, 15} /* initializers for row indexed by 3 */
};

ต่อไปนี้เป็นตัวอย่าง −

ตัวอย่าง

using System;

namespace Demo {
   class Program {
      static void Main(string[] args) {

         int[,] a = new int[5, 2] {{77,34}, {55,65}, {47,66}, {45,98}, {86,23} };
         int i, j;

         for (i = 0; i < 5; i++) {
   
            for (j = 0; j < 2; j++) {
               Console.WriteLine(a[i,j]);
            }
         }
         Console.ReadKey();
      }
   }
}