How to declare, initialize and print a 2D array (matrix) in Go

1 Answer

0 votes
package main

import (
    "fmt"
)

func main() {
    arr := [][]int{
        {1, 2, 3, 5},
        {4, 5, 6, 0},
        {7, 8, 9, 3},
    }

    rows := len(arr)
    cols := len(arr[0])

    for i := 0; i < rows; i++ {
        for j := 0; j < cols; j++ {
            fmt.Print(arr[i][j], " ")
        }
        fmt.Println()
    }
}



/*
run: 

1 2 3 5 
4 5 6 0 
7 8 9 3 
 
*/

 



answered Nov 26, 2024 by avibootz

Related questions

1 answer 123 views
1 answer 114 views
1 answer 105 views
1 answer 123 views
1 answer 122 views
1 answer 127 views
...