如何在序言中访问二维数组以及如何循环其中的每个元素 例如,如果我有一个矩阵 问题1如何在序言中创建像这样的二维列表:
1 2 3
4 5 6
7 8 9
问题2: 如何循环每个元素并使每个元素+1 成为
2 3 4
5 6 7
8 9 10
问题3
public Cell(int row, int col, int cost, int units) {
this.cost = cost;
this.units = units;
this.row = row;
this.col = col;
}
在矩阵中,所有事物都是像单元格一样的对象 我的任务是将Java代码转换为Prolog代码
那我怎么做才能使这个对象成为序言呢?