Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,987 questions

51,931 answers

573 users

How to print 2D array in Scala

2 Answers

0 votes
object O {
    def main(args: Array[String]): Unit = {
        val arr = Array.ofDim[Int](2, 3)

        val row1 = arr.apply(0)
        row1.update(0, 7)
        row1.update(1, 4)
        row1.update(2, 8)
        
        val row2 = arr.apply(1)
        row2.update(0, 2)
        row2.update(1, 9)
        row2.update(2, 4)

        for (row <- arr) {
            for (n <- row) {
                print(n)
                print(" ")
            }
            println()
        }
    }
}



/*
run:

7 4 8 
2 9 4 

*/

 



answered Sep 4, 2020 by avibootz
0 votes
object O {
    def main(args: Array[String]): Unit = {
        val arr = Array.ofDim[Int](2, 3)

        val row1 = arr.apply(0)
        row1.update(0, 7)
        row1.update(1, 4)
        row1.update(2, 8)
        
        val row2 = arr.apply(1)
        row2.update(0, 2)
        row2.update(1, 9)
        row2.update(2, 4)
        
        print(arr.map(_.mkString).mkString("\n"))
    }
}



/*
run:

748
294

*/

 



answered Sep 4, 2020 by avibootz

Related questions

1 answer 107 views
1 answer 200 views
1 answer 168 views
168 views asked Sep 3, 2020 by avibootz
1 answer 75 views
75 views asked Jan 10, 2025 by avibootz
1 answer 75 views
...