跳轉至內容

面向初學者的 C Sharp/陣列

來自華夏公益教科書,面向開放世界的開放書籍

using System;

Public Class TwoD {

   public static void Main(string [] args)
   {
       int[,]a = int[2,2];
       int i,j;
       Console.WriteLine("Enter elements in the array:");
       for(i=0;i<2;i++)
       {
           for(j=0;j<2;j++)
           {
               a[i,j]=Convert.ToInt32(Console.ReadLine());
           }
       }
   }

}

華夏公益教科書