我的編碼有什麼問題...?陣列附加異常錯誤:
這是我添加二維數組的編碼。當我調試我的編碼,然後未處理的異常system.format.something的時...
代碼..
static void Main(string[] args)
{
int[,] a = new int[4, 4]
{ { 1, 1, 1, 1 },
{ 1, 1, 1, 1 },
{ 1, 1, 1, 1 },
{ 1, 1, 1, 1 } };
int[,] b = new int[4, 4]
{ { 2, 2, 2, 2 },
{ 2, 2, 2, 2 },
{ 2, 2, 2, 2 },
{ 2, 2, 2, 2 } };
int[,] c = new int[4, 4];
for (int row = 0; row < 4; row++)
{
for (int col = 0; col < 4; col++)
{
c[row, col] = a[row, col] + b[row, col];
}
}
for (int row = 0; row < 4; row++)
{
for (int col = 0; col < 4; col++)
{
Console.Write("The value of {0},{1}", c[row, col]);
}
}
}
究竟是什麼異常?在哪一行?並根據您的具體問題[寫一個更好的標題](http://meta.stackexchange.com/q/10647/158761)。 –