Go言語-fmt.Scan
fmt.Scan
プログラミング基本からGoの理解を文字におこして行こうと思います!
fmt.Scan
var input string
fmt.Scan(&input) //❶fmt.scan(&変数名)でコンソールに文字入力
}
//コンソール
Go //❷文字列を入力→❸変数inputに入力された値Goが代入
fmt.Scan(&変数名)を使うとコンソールでの入力ができる
入力された値は変数inputに代入
入力の流れ
func main() {
var input string
fmt.Println("次の単語を入力してください:go") //❶
fmt.Scan(&input) //❷
fmt.Printf("%sと入力されました", input) //❸
//コンソール
//❶次の単語を入力してください:go
//❷go(コンソールで入力)
//❸goと入力されました
fmt.Scanを使うと入力ができるようになる
Author And Source
この問題について(Go言語-fmt.Scan), 我々は、より多くの情報をここで見つけました https://qiita.com/coxcoa/items/036787564bd86c5b85cd著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .