程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#語法練習(7): 數組(4)

C#語法練習(7): 數組(4)

編輯:關於C語言


 

多維數組:

using System;

class MyClass
{
   static void Main()
   {
     int[,,] arr = new int[2, 3, 4];

     for (int x = 0; x < 2; x++) for (int y = 0; y < 3; y++) for (int z = 0; z < 4; z++)
       arr[x,y,z] = Convert.ToInt32(Convert.ToString(x+1) + Convert.ToString(y+1) + Convert.ToString(z+1));

     foreach (int i in arr) Console.WriteLine(i);

     Console.ReadKey();
   }
}

數組中的數組:

using System;

class MyClass
{
   static void Main()
   {
     int[][] arr = new int[3][];
     arr[0] = new int[2] { 11, 12 };
     arr[1] = new int[3] { 21, 22, 23 };
     arr[2] = new int[4] { 31, 32, 33, 34 };

     foreach (int[] ns in arr) foreach (int n in ns)
         Console.WriteLine(n);

     Console.ReadKey();
   }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved