2022-07-14:以下go语言代码输出什么?A:1;B:3;C:4;D:编译错误。package mainimport ( "fmt")func main() { a := [5]int{1, 2, 3, 4, 5} t := a[3:4:4] fmt.Println(t[0])}