using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{ class Program { static void Main(string[] args) { int[,] a = new int[4, 4]; a[2, 3] = 2; a[3, 4] = 3; a[1, 4] = 5; for (int i = 0; i < 3; i++) { for (int j = 0; j < 3; j++) { Console.Write("{0}", a[i, j]); } Console.WriteLine(); } } }}我是想输出a[4,4]这个数组 求解
static void Main(string[] args) { int[,] a = new int[4, 4]; a[2, 3] = 2; a[3, 3] = 3; a[1, 3] = 5; for (int i = 0; i <= 3; i++) { for (int j = 0; j <= 3; j++) { Console.Write("{0}", a[i, j]); } Console.WriteLine(); } Console.Read(); }
1L 正解 LZ 要搞清楚二维数组 的 赋值 语法啊。。。索引都是从 0 开始的 而非1 所以最后一位值当然也就是 相应的n-1了。。。而不是nLZ还是好好看看书 然后再实践吧 反复读语法 扎实的基本功非常重要