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,950 questions

51,892 answers

573 users

How to zero a 2D array in Scala

1 Answer

0 votes
object Main extends App {
  // Define a function to print the 2D array
  def printArray(array: Array[Array[Int]], rows: Int, cols: Int): Unit = {
    for (i <- 0 until rows) {
      for (j <- 0 until cols) {
        print(array(i)(j))
        printf(" ")
      }
      println()
    }
  }
  
  var arr = Array(
      Array(1, 82, 3,  5),
      Array(4,  5, 6, 99),
    )
    
  val rows = arr.length
  val cols = arr(0).length

  printArray(arr, rows, cols)

  // Initialize the 2D array with zeros
  arr = Array.ofDim[Int](rows, cols)

  printArray(arr, rows, cols)
}

  
  
/*
run:
    
1 82 3 5 
4 5 6 99 
0 0 0 0 
0 0 0 0 
  
*/

 



answered Jan 10, 2025 by avibootz
...