Skip to content

Instantly share code, notes, and snippets.

@ranapu
Last active March 29, 2017 16:56
Show Gist options
  • Save ranapu/56d3ace4b72f2df2dc1f9f46648f0b79 to your computer and use it in GitHub Desktop.
Save ranapu/56d3ace4b72f2df2dc1f9f46648f0b79 to your computer and use it in GitHub Desktop.
Simple Array Sum in Go
package main
import "fmt"
func main() {
var n, sum, num int
fmt.Scan(&n)
for i := 0; i < n; i++ {
fmt.Scan(&num)
sum += num
}
fmt.Print(sum)
}
@ranapu
Copy link
Author

ranapu commented Mar 29, 2017

Given an array of integers, can you find the sum of its elements?

Input Format

The first line contains an integer, , denoting the size of the array.
The second line contains space-separated integers representing the array's elements.

Output Format

Print the sum of the array's elements as a single integer.

Sample Input

6
1 2 3 4 10 11
Sample Output

31
Explanation

We print the sum of the array's elements, which is: .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment