![111.png](https://static.studygolang.com/181209/ae3e7eb60a787174ddc9efe94050b921.png)
你的用法错误 类似于C预言 sscanf
```go
package main
import (
"fmt"
)
func main() {
var a, b, c int
fmt.Println("input 1 2 3")
fmt.Scanf("%d %d %d", &a, &b, &c)
fmt.Println(a + b + c)
}
```
#4
更多评论
```
It looks like you are trying to interact with your program via the debug console as stdin.
That is unfortunately not supported at the moment.
输入输出交互暂时不支持调试控制台,使用终端或cmd是正常的
```
>https://github.com/Microsoft/vscode-go/issues/219
#2