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 array in Scala

4 Answers

0 votes
object O {
    def main(args: Array[String]): Unit = {
        var arr = Array(5, 7, 2.34, 8, 9.648)

        arr.foreach(println(_))
    }
}




/*
run:

5.0
7.0
2.34
8.0
9.648

*/

 



answered Sep 6, 2020 by avibootz
0 votes
object O {
    def main(args: Array[String]): Unit = {
        var arr = Array(5, 7, 2.34, 8, 9.648)

        for (n <- arr) {
            println(n)
        }
    }
}




/*
run:

5.0
7.0
2.34
8.0
9.648

*/

 



answered Sep 6, 2020 by avibootz
0 votes
object O {
    def main(args: Array[String]): Unit = {
        var arr = Array(5, 7, 2.34, 8, 9.648)

        for (i <- 0 to (arr.length - 1)) {
            println(arr(i))
      }
    }
}




/*
run:

5.0
7.0
2.34
8.0
9.648

*/

 



answered Sep 6, 2020 by avibootz
0 votes
object O {
    def main(args: Array[String]): Unit = {
        var arr: Array[Int] = Array(1, 2, 3, 4, 5, 8, 9)
 
        for (n <- arr) {
            print(n)
            print(" ")
        }
    }
}
   
    
    
    
/*
run:
    
1 2 3 4 5 8 9 
    
*/

 



answered Apr 19, 2024 by avibootz

Related questions

1 answer 53 views
1 answer 67 views
2 answers 74 views
1 answer 107 views
2 answers 142 views
1 answer 200 views
1 answer 169 views
...