Golang : Totalize or add-up an array or slice example
A simple example on how to totalize or add-up all the integer elements in a slice/array. Just use a for
loop to add up the elements one-by-one.
Here you go!
package main
import (
"fmt"
)
func main() {
slice := []int{1, 2, 3, 4, 5, 6}
total := 0
for i := 0; i < len(slice); i++ {
total = total + slice[i]
}
fmt.Println("Slice elements are : ", slice)
fmt.Println("Elements add up to : ", total)
}
Sample output:
Slice elements are : [1 2 3 4 5 6]
Elements add up to : 21
See also : Golang : 2 dimensional array example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.2k Golang : Fix fmt.Scanf() on Windows will scan input twice problem
+12.6k Swift : Convert (cast) Int or int32 value to CGFloat
+6.1k Apt-get to install and uninstall Golang
+7.3k Golang : Process json data with Jason package
+14.3k Golang : Find network of an IP address
+20k Golang : Convert seconds to human readable time format example
+6.5k Golang : When to use make or new?
+5.6k Golang : Struct field tags and what is their purpose?
+14.2k Golang : How to shuffle elements in array or slice?
+5.7k Cash Flow : 50 days to pay your credit card debt
+27.4k PHP : Convert(cast) string to bigInt
+11.4k Golang : Display a text file line by line with line number example