


Use the fmt.Fscanf function to read formatted data from the input and assign it to multiple variables until a newline character is encountered
Use the fmt.Fscanf function to read formatted data from the input and assign it to multiple variables until a newline character is encountered
In the fmt package of Go language, there is a very practical function fmt.Fscanf can be used to read formatted input data and assign the read values to multiple variables. The following describes how to use the fmt.Fscanf function, with code examples.
Before starting, you first need to understand the basic usage of the fmt.Fscanf function. Its function signature is as follows:
func Fscanf(r io.Reader, format string, a ...interface{}) (n int, err error)
The Fscanf function reads formatted data from the reader r. The format is specified by the format parameter. The read value is assigned to a...interface{} according to the format format. variables in, and returns the number of parameters n successfully read and the error message err.
The following is a simple code example that demonstrates how to use the fmt.Fscanf function to read formatted data from standard input and assign the read values to multiple variables.
package main import ( "fmt" "os" ) func main() { var name string var age int fmt.Println("请输入你的姓名和年龄(以空格分隔): ") _, err := fmt.Fscanf(os.Stdin, "%s %d ", &name, &age) if err != nil { fmt.Println("读取输入错误: ", err) return } fmt.Printf("你的姓名是 %s,年龄是 %d ", name, age) }
In the above example, the variables name and age are first defined, which are used to store the read name and age respectively. Then use the fmt.Fscanf function to read formatted data from the standard input os.Stdin. "%s %d
" specifies the input format, "%s" means reading a string, and "%d" means Read an integer, "
" means read a space and a newline character. The read results are assigned to the two variables name and age in order. When reading, if an error is encountered, the err error message will be returned, and error handling is required.
Finally, print out the read result in the fmt.Printf function to verify whether the read result is correct.
Summary: Use the fmt.Fscanf function to easily read formatted data from the input and assign the read values to multiple variables. By properly specifying the format, flexible reading and processing of input data can be achieved. It should be noted that error handling must be performed when reading to ensure the correctness of the reading operation.
I hope the code examples and explanations in this article can help you understand and use the fmt.Fscanf function.
The above is the detailed content of Use the fmt.Fscanf function to read formatted data from the input and assign it to multiple variables until a newline character is encountered. For more information, please follow other related articles on the PHP Chinese website!

Goimpactsdevelopmentpositivelythroughspeed,efficiency,andsimplicity.1)Speed:Gocompilesquicklyandrunsefficiently,idealforlargeprojects.2)Efficiency:Itscomprehensivestandardlibraryreducesexternaldependencies,enhancingdevelopmentefficiency.3)Simplicity:

C is more suitable for scenarios where direct control of hardware resources and high performance optimization is required, while Golang is more suitable for scenarios where rapid development and high concurrency processing are required. 1.C's advantage lies in its close to hardware characteristics and high optimization capabilities, which are suitable for high-performance needs such as game development. 2.Golang's advantage lies in its concise syntax and natural concurrency support, which is suitable for high concurrency service development.

Golang excels in practical applications and is known for its simplicity, efficiency and concurrency. 1) Concurrent programming is implemented through Goroutines and Channels, 2) Flexible code is written using interfaces and polymorphisms, 3) Simplify network programming with net/http packages, 4) Build efficient concurrent crawlers, 5) Debugging and optimizing through tools and best practices.

The core features of Go include garbage collection, static linking and concurrency support. 1. The concurrency model of Go language realizes efficient concurrent programming through goroutine and channel. 2. Interfaces and polymorphisms are implemented through interface methods, so that different types can be processed in a unified manner. 3. The basic usage demonstrates the efficiency of function definition and call. 4. In advanced usage, slices provide powerful functions of dynamic resizing. 5. Common errors such as race conditions can be detected and resolved through getest-race. 6. Performance optimization Reuse objects through sync.Pool to reduce garbage collection pressure.

Go language performs well in building efficient and scalable systems. Its advantages include: 1. High performance: compiled into machine code, fast running speed; 2. Concurrent programming: simplify multitasking through goroutines and channels; 3. Simplicity: concise syntax, reducing learning and maintenance costs; 4. Cross-platform: supports cross-platform compilation, easy deployment.

Confused about the sorting of SQL query results. In the process of learning SQL, you often encounter some confusing problems. Recently, the author is reading "MICK-SQL Basics"...

The relationship between technology stack convergence and technology selection In software development, the selection and management of technology stacks are a very critical issue. Recently, some readers have proposed...

Golang ...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment