在 Go 语言中, fmt包使用类似于 C 的 printf() 和 scanf()函数的函数来实现格式化的 I/O。 Go 语言中的fmt.Scanln()函数扫描标准输入中给出的输入文本,从那里读取并将连续的空格分隔值存储到连续的参数中。此函数在换行符处停止扫描,在最后一项之后,必须有一个换行符或 EOF。而且,这个函数是在 fmt 包下定义的。在这里,您需要导入“fmt”包才能使用这些功能。
句法:
func Scanln(a ...interface{}) (n int, err error)
这里,“a …interface{}”接收每个给定的文本。
返回:它返回成功扫描的项目数。
示例 1:
// Golang program to illustrate the usage of
// fmt.Scanln() function
// Including the main package
package main
// Importing fmt
import (
"fmt"
)
// Calling main
func main() {
// Declaring some variables
var name string
var alphabet_count int
// Calling Scanln() function for
// scanning and reading the input
// texts given in standard input
fmt.Scanln(&name)
fmt.Scanln(&alphabet_count)
// Printing the given texts
fmt.Printf("%s %d",
name, alphabet_count)
}
输入:
GFG 3
输出:
GFG 0
示例 2:
// Golang program to illustrate the usage of
// fmt.Scanln() function
// Including the main package
package main
// Importing fmt
import (
"fmt"
)
// Calling main
func main() {
// Declaring some variables
var name string
var alphabet_count int
// Calling Scanln() function for
// scanning and reading the input
// texts given in standard input
fmt.Scanln(&name)
fmt.Scanln(&alphabet_count)
// Printing the given texts
fmt.Printf("%s %d",
name, alphabet_count)
}
输入:
GeeksforGeeks \n 13
输出:
GeeksforGeeks 0
在上面的例子中,可以看到标准输入的值为“GeeksforGeeks \n 13”,但它返回输出为“GeeksforGeeks 0”,这是因为该函数在新行(\n)处停止扫描。