Application Of The Multiple Return Function

Rmag Breaking News

How to create a function that has a return value is not difficult. Just write when declaring the function all the data types of the values to be returned and in the return keyword write all the data you want to return. An example can be seen below.

package main
import “fmt”
import “math”
func calculate(d float64) (float64, float64) {
// calculate area
var area = math.Pi * math.Pow(d / 2, 2)
// calculate the circumference
var circumference = math.Pi * d
// return the two value
return area, circumference
}

The calculate() function above accepts one parameter (diameter).
used in the calculation process. In this function there are 2 things
calculated, namely the area and perimeter values. These two values are then combined
as the return value of the function.
How to define multiple return values can be seen in the code above, write it straight away
data type all return values are separated by commas, then added brackets in
among them.

func calculate(d float64) (float64, float64)

Don’t forget that in the section for writing the return keyword you must also write down all the data
which is used as the return value (with a comma).

return area, circumference

The implementation of the calculate() function above can be seen in the following code.

func main() {
var diameter float64 = 15
var area, circumference = calculate(diameter)
fmt.Printf(“luas lingkarantt: %.2f n”, area)
fmt.Printf(“keliling lingkarant: %.2f n”, circumference)
}

Hope it is usefull
Keep Going

Leave a Reply

Your email address will not be published. Required fields are marked *