How do I use the fmt.Scanf function in golang to get an integer input from the standard input ?
If this can't be done using fmt.Scanf, what's the best way to read a single integer ?
Thanks :)
|
How do I use the fmt.Scanf function in golang to get an integer input from the standard input ? If this can't be done using fmt.Scanf, what's the best way to read a single integer ? Thanks :) |
|||
|
|
|
http://golang.org/pkg/fmt/#Scanf All the included libraries in Go are well documented. That being said, I believe
does the trick |
|||||||
|
|
An alternative that can be a bit more concise is to just use fmt.Scan:
package main
import "fmt"
func main() {
var i int
fmt.Scan(&i)
fmt.Println("read number", i, "from stdin")
}
This uses reflection on the type of the argument to discover how the input should be parsed. |
|||
|
|