在 Go 语言中, fmt包使用类似于 C 的 printf() 和 scanf()函数的函数来实现格式化的 I/O。 Go 语言中的fmt.Scan()函数扫描标准输入中给出的输入文本,从那里读取并将连续的空格分隔值存储到连续的参数中。而且,这个函数是在 fmt 包下定义的。在这里,您需要导入“fmt”包才能使用这些功能。
句法:
func Scan(a ...interface{}) (n int, err error)
这里,“a …interface{}”接收给定文本的每种类型。
返回:它返回成功扫描的项目数。
示例 1:
C
// Golang program to illustrate the usage of
// fmt.Scan() 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 Scan() function for
// scanning and reading the input
// texts given in standard input
fmt.Scan(&name)
fmt.Scan(&alphabet_count)
// Printing the given texts
fmt.Printf("The word %s containing %d number of alphabets.",
name, alphabet_count)
}
C
// Golang program to illustrate the usage of
// fmt.Scan() 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
var float_value float32
var bool_value bool
// Calling Scan() function for
// scanning and reading the input
// texts given in standard input
fmt.Scan(&name)
fmt.Scan(&alphabet_count)
fmt.Scan(&float_value)
fmt.Scan(&bool_value)
// Printing the given texts
fmt.Printf("%s %d %g %t", name,
alphabet_count, float_value, bool_value)
}
输入:
GFG 3
输出:
The word GFG containing 3 number of alphabets.
示例 2:
C
// Golang program to illustrate the usage of
// fmt.Scan() 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
var float_value float32
var bool_value bool
// Calling Scan() function for
// scanning and reading the input
// texts given in standard input
fmt.Scan(&name)
fmt.Scan(&alphabet_count)
fmt.Scan(&float_value)
fmt.Scan(&bool_value)
// Printing the given texts
fmt.Printf("%s %d %g %t", name,
alphabet_count, float_value, bool_value)
}
输入:
GeeksforGeeks 13 6.789 true
输出:
GeeksforGeeks 13 6.789 true