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

51,811 answers

573 users

How to declare and initialize a matrix with zeros in Swift

1 Answer

0 votes
import Foundation

let rows = 3
let cols = 4
var matrix = Array(repeating: Array(repeating: 0, count: cols), count: rows)
    
for row in matrix {
    print(row.map { String($0) }.joined(separator: " "))
}
    
print("\n")
    
for i in 0..<rows {
    for j in 0..<cols {
        print("\(matrix[i][j]) ", terminator: "")
    }
    print()
}



/*
run:

0 0 0 0
0 0 0 0
0 0 0 0


0 0 0 0 
0 0 0 0 
0 0 0 0 

*/

 



answered Nov 27, 2024 by avibootz

Related questions

1 answer 89 views
2 answers 216 views
2 answers 161 views
1 answer 99 views
1 answer 94 views
1 answer 102 views
1 answer 104 views
...