In this program, we will create a slice and then sort slice elements using the sort.Float64s() function and then print sorted slice on the console screen.
The source code to sort a slice of 64-bit floating-point numbers in ascending order is given below. The given program is compiled and executed successfully.
// Golang program to sort a slice of 64-bit floating-point
// numbers in ascending order
package main
import "fmt"
import "sort"
func main() {
slice := []float64{70.1, 20.2, 30.3, 60.4, 50.7, 60.8, 10.9}
sort.Float64s(slice)
fmt.Println("Sorted slice: ")
for _, ele := range slice {
fmt.Printf("%f ", ele)
}
}
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.
In the above program, we also imported the sort package to use the Float64s() function to sort 64-bit float slice.
In the main() function, we created a slice of 64-bit float numbers, then we sorted elements of the slice using the Float64s() function of the sort package. After that, we printed the result on the console screen.
Program/Source Code:
The source code to sort a slice of 64-bit floating-point numbers in ascending order is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.
In the above program, we also imported the sort package to use the Float64s() function to sort 64-bit float slice.
In the main() function, we created a slice of 64-bit float numbers, then we sorted elements of the slice using the Float64s() function of the sort package. After that, we printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer