我们如何访问 C# 中二维数组中的元素?
二维数组可以被认为是一个表格,它有 x 行和 y 列。
通过使用下标访问二维数组中的一个元素。即数组的行索引和列索引。
int x = a[1,1]; Console.WriteLine(x);
让我们看一个展示如何访问二维数组中的元素的例子。
例子
using System;
namespace Demo {
class MyArray {
static void Main(string[] args) {
/* an array with 5 rows and 2 columns*/
int[,] a = new int[5, 2] {{0,0}, {1,2}, {2,4}, {3,6}, {4,8} };
int i, j;
/* output each array element's value */
for (i = 0; i < 5; i++) {
for (j = 0; j < 2; j++) {
Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i,j]);
}
}
int x = a[1,1];
Console.WriteLine(x);
Console.ReadKey();
}
}
}输出
a[0,0] = 0 a[0,1] = 0 a[1,0] = 1 a[1,1] = 2 a[2,0] = 2 a[2,1] = 4 a[3,0] = 3 a[3,1] = 6 a[4,0] = 4 a[4,1] = 8 2
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP