-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfunctions.go
41 lines (34 loc) · 979 Bytes
/
functions.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package main
import ("fmt"
"errors")
func main() {
numerator := 12
denominator := 3
var quotient, remainder, err = division(numerator, denominator)
if err != nil {
fmt.Println(err.Error())
}
fmt.Println("The quotient is: ", quotient, " and the remainder is: ", remainder)
fmt.Printf("The quotient is %v and the remainder is %v", quotient, remainder)
fmt.Println("Sum of 1, 2, 3 and 4 is", sum(1,2,3,4))
fmt.Println("Sum of 1, 2, 3 is", sum(1,2,3))
}
func division (numerator int, denominator int) (int, int, error) {
var err error
if denominator == 0 {
err = errors.New("Cannot divide by zero")
return 0, 0, err
}
var quotient int = numerator/denominator
var remainder int = numerator%denominator
return quotient, remainder, err
}
// varidic funtion - variable number of arguments
// only one variable argument allowed and ir must be the last parameter
func sum(nums ...int) int {
total := 0
for _, n := range nums {
total += n
}
return total
}