数据结构
Willem Zhang Lv6

##数组

1
2
3
4
5
6
7
8
9
func main() {
var balance [10] float32
balance[0] = 2
balance[1] = 3
balance[2] = 1
balance[3] = 0
balance[4] = 2
fmt.Println(balance[6])
}

##

  • Post title:数据结构
  • Post author:Willem Zhang
  • Create time:2021-04-14 02:54:17
  • Post link:https://ataraxia.top/2021/04/13/数据结构/
  • Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.
 Comments