package mainimport "fmt"func main() { fmt.Println("Press the Enter Key to terminate the console screen!") fmt.Scanln() // wait for Enter Key}
最少导入的最简单的另一种方法使用这 2 行:var input stringfmt.Scanln(&input)在程序末尾添加这一行,将暂停屏幕直到用户按下 Enter 键,例如:package mainimport "fmt"func main() { fmt.Println("Press the Enter Key to terminate the console screen!") var input string fmt.Scanln(&input)}