在 J 编程语言中如何进行数组访问?例如,使用 C++ 作为我的伪代码语言:
int M [100]; // declare an array called M
int j = 5; //index into the array
int y = 10; //value to store or load from the array
M[j] = y; // store y into the array
y = M[j]; // load y from the array
在惯用的 J 中,这些类型的数组访问会是什么样子?