Program in Go language to Calculate Average Using Arrays
This Go language program takes n number of element from user, stores data in an array and calculates the average of those numbers.
Example
// Golang Program to Calculate Average Using Arrays.
package main
import "fmt"
func main(){
var num[100] int
var temp,sum,avg int
fmt.Print("Enter number of elements: ")
fmt.Scanln(&temp)
for i := 0; i < temp; i++ {
fmt.Print("Enter the number : ")
fmt.Scanln(&num[i])
sum += num[i]
}
avg = sum/temp
fmt.Printf("The Average of entered %d number(s) is %d",temp,avg)
}
Output
Enter number of elements: 5
Enter the number : 2
Enter the number : 65
Enter the number : 18
Enter the number : 59
Enter the number : 54
The Average of entered 5 number(s) is 39
Most Helpful This Week
GO language program with example of Sort Functions for integer, strings and float64 data type
GO Program to Check Whether a Number is Even or Odd
Program in Go language to Calculate Standard Deviation using Math package
GO Program to Swap Number Without Using Temporary Variables
GO supports the standard arithmetic operators: (Addition, Subtraction, Multiplication, Division,Remainder)
GO Program to Generate Fibonacci Sequence Up to a Certain Number