Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :)

share|improve this question

2 Answers

up vote 34 down vote accepted

http://golang.org/pkg/fmt/#Scanf

All the included libraries in Go are well documented.

That being said, I believe

func main() {
    var i int
    _, err := fmt.Scanf("%d", &i)
}

does the trick

share|improve this answer
Thank you :) it does work, I was being an idiot, didn't use the quotes. – yasith Sep 20 '10 at 12:31
@yasith happens to us all sometimes – cthom06 Sep 20 '10 at 12:35
@cthom06 remember to check the err returned from fmt.Scanf – Dave Cheney Aug 22 '12 at 0:35

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.

http://golang.org/pkg/fmt/#Scan

share|improve this answer
You shouldn't do that without checking for errors ;) – Demizey Apr 13 at 16:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.