英文:
go fmt.Scan into Array
问题
fmt
包有一个Scan函数,它可以读取标准输入,并将连续的以空格分隔的值写入您提供的变量中。是否有办法将其与切片一起使用,以便我可以创建一个长度为n的切片,并让scan函数读取n个值并将它们放入切片中?
英文:
The fmt
package has a Scan function that reads stdin, and writes consecutive space separated values to the variables you provide. Is there a way to use this with Slices, so that I could create a slice of sice n, and have scan read n values and put them into the slice?
答案1
得分: 2
只需将对fmt.Scan
的调用放在一个for
循环中即可。
英文:
Just wrap your call to fmt.Scan
in a for
loop.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论