Scanning

Report a typo

Using the fmt.Scan function, read a value from the stdin into the v variable, and finally output its value.

Write a program in Go
package main

import "fmt"

func main() {
var v int

// Put your code here

fmt.Println(?)
}
___

Create a free account to access the full topic