今天是輸入的範例
// hello16
// 輸入範例
package main
import (
"fmt"
)
var (
x int = 5
y int
)
func main() {
fmt.Printf("輸入一個數字:")
fmt.Scanf("%d", &y)
if y >= x {
fmt.Printf("if | %t\n", y >= x)
} else {
fmt.Printf("else | %t\n", y >= x)
}
}
執行結果:
$ ./hello16
輸入一個數字:6
if | true
$ ./hello16
輸入一個數字:4
else | false