Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,13 @@
object MultiDimensionalArray extends App {
// Create a regular 4 dimensional array and initialize successive elements to the values 1 to 120
val a4 = Array.fill[Int](5, 4, 3, 2) { m += 1; m }
var m = 0
println("First element = " + a4(0)(0)(0)(0)) // access and print value of first element
println("Last element = " + a4.last.last.last.last)
a4(0)(0)(0)(0) = 121 // change value of first element
println(a4.flatten.flatten.flatten.mkString(", "))
}