Added guessing coordinates to matrix exercise
This commit is contained in:
parent
9e45c522c8
commit
38fe54f3de
|
@ -4,17 +4,32 @@ import (
|
|||
"fmt"
|
||||
)
|
||||
|
||||
var cell string = "x"
|
||||
var x int
|
||||
var y int
|
||||
|
||||
func main() {
|
||||
a := [][]int{
|
||||
{0, 1, 2},
|
||||
{3, 4, 5},
|
||||
{6, 7, 8},
|
||||
a := [][]string{
|
||||
{cell, cell, cell},
|
||||
{cell, "1", cell},
|
||||
{cell, cell, cell},
|
||||
}
|
||||
|
||||
for i := 0; i < len(a); i++ {
|
||||
for _, v := range a[i] {
|
||||
fmt.Printf("%v", v)
|
||||
fmt.Printf("%v ", v)
|
||||
}
|
||||
fmt.Println()
|
||||
}
|
||||
|
||||
fmt.Printf("Where's the one?\n")
|
||||
fmt.Printf("X coordinate: ")
|
||||
fmt.Scanln(&x)
|
||||
fmt.Printf("Y coordinate: ")
|
||||
fmt.Scanln(&y)
|
||||
x++
|
||||
y++
|
||||
|
||||
fmt.Println(a[x][y])
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue