Golang : How to read float value from standard input ?
This is a continuation from previous tutorial on how to read integer value from standard input. For this tutorial, we will learn how to read float value from standard input. Below is the code to do that :
package main
import (
"fmt"
"strconv"
)
func main() {
var f float64
fmt.Println("Enter a float value : ")
_, err := fmt.Scanf("%f", &f)
if err != nil {
fmt.Println(err)
}
fmt.Printf("You have entered : %f \n", f)
fmt.Println("Alternative output ", strconv.FormatFloat(f, 'f', 6, 64))
}
See also : Golang : How to read integer value from standard input ?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.1k Golang : Web(Javascript) to server-side websocket example
+8k Golang : Metaprogramming example of wrapping a function
+13.2k Golang : Increment string example
+9.1k Golang : Timeout example
+17k Golang : When to use init() function?
+5k Golang : The Tao of importing package
+4.9k Swift : Convert (cast) Float to Int or Int32 value
+5.9k Golang : Create new color from command line parameters
+14.1k Golang : Parsing or breaking down URL
+9k Golang : How to get garbage collection data?
+11.1k Golang : Characters limiter example
+5.9k Golang : How to write backslash in string?