如何在J編程語言中進行數組訪問?例如,使用C++作爲我的僞代碼語言:J編程語言中的數組
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中看起來像什麼?
[RosettaCode](http://rosettacode.org/wiki/Arrays#J)可能是這種類型的比較更好的論壇。 – Tikkanz