📜  Golang 中的 fmt.Scanf()函数示例

📅  最后修改于: 2021-10-25 02:15:02             🧑  作者: Mango

在 Go 语言中, fmt包使用类似于 C 的 printf() 和 scanf()函数的函数来实现格式化的 I/O。 Go 语言中的fmt.Scanf()函数扫描标准输入中给出的输入文本,从那里读取并将连续的空格分隔值存储到由格式确定的连续参数中。而且,这个函数是在 fmt 包下定义的。在这里,您需要导入“fmt”包才能使用这些功能。
句法:

func Scanf(format string, a ...interface{}) (n int, err error)

参数:此函数接受两个参数,如下所示:

  • 格式字符串:这是用于每个给定元素的不同格式。
  • a …interface{}:这些参数接收每个给定的元素。

返回:它返回成功扫描的项目数。
示例 1:

C
// Golang program to illustrate the usage of
// fmt.Scanf() 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 Scanf() function for
    // scanning and reading the input
    // texts given in standard input
    fmt.Scanf("%s", &name)
    fmt.Scanf("%d", &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.Scanf() 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 Scanf() function for
    // scanning and reading the input
    // texts given in standard input
    fmt.Scanf("%s", &name)
    fmt.Scanf("%d", &alphabet_count)
    fmt.Scanf("%g", &float_value)
    fmt.Scanf("%t", &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.Scanf() 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 Scanf() function for
    // scanning and reading the input
    // texts given in standard input
    fmt.Scanf("%s", &name)
    fmt.Scanf("%d", &alphabet_count)
    fmt.Scanf("%g", &float_value)
    fmt.Scanf("%t", &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