RosettaCodeData/Task/Create-a-two-dimensional-array-at-runtime/Elena/create-a-two-dimensional-array-at-runtime-1.elena

17 lines
292 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import extensions;
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
public program()
{
var n := new Integer();
var m := new Integer();
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
console.write:"Enter two space delimited integers:";
console.loadLine(n,m);
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
var myArray := new Matrix<int>(n,m);
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
myArray.setAt(0,0,2);
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
console.printLine(myArray.at(0, 0))
}