码迷,mamicode.com
首页 > 编程语言 > 详细

Go数组求和

时间:2019-03-31 12:19:48      阅读:392      评论:0      收藏:0      [点我收藏+]

标签:class   color   dex   style   nbsp   go数组   value   pre   pack   

package main

import "fmt"
var a [5]int

func main()  {
    a := [5]int{1,3,5,7,8}
    var b int
    for index,value := range a{
        fmt.Println(index,value)
        b += value
    }
    fmt.Println(b)
}

 

Go数组求和

标签:class   color   dex   style   nbsp   go数组   value   pre   pack   

原文地址:https://www.cnblogs.com/aaronthon/p/10630761.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!