using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace test1
{
class Program
{
static void Main(string[] arg)
//以定義一個以上 進入點, modify /main
// ref : http://justin0002.blogspot.com/2012/12/c.html
{
// ref :https://sweetkikibaby.pixnet.net/blog/post/191310453
int[,] arr1 = new int[3, 2] { {1,2},{ 3,4},{ 5,6} };
{
for (int i = 0; i <= arr1.GetLength(0) - 1; i++)
{
for (int j = 0; j <= arr1.GetLength(1) - 1; j++)
{
Console.WriteLine(arr1[i, j].ToString());
}
Console.ReadLine();// check 內迴圈次數
}
Console.ReadLine();// check 外迴圈次數
}
}
}
}
沒有留言:
張貼留言