0
0

More than 3 years have passed since last update.

main.go

Posted at

package main

import "fmt"

func main() {
ask()
// もう一度ask関数を呼び出してください
ask()
}

func ask() {
var input string
fmt.Println("次の単語を入力してください: dog")
fmt.Scan(&input)
fmt.Printf("%sと入力されました\n", input)
}

main 関数 ask()2回呼び出す

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0