Declare a three-dimensional array of the float32 type with the size of 4 by 4 by 4 elements, assign 88.6 to its [1][0][2] element, and finally print the array to the console.
Arrays
Coding a 3D array
Report a typo
Write a program in Go
package main
import "fmt"
func main() {
// Create the array and assign 88.6 to its [1][0][2] element below:
array := ?
// DO NOT delete, this line prints the array!
fmt.Println(array)
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.