2 Commits

Author SHA1 Message Date
wonder b22fab4459 ✨Feat: 数学库调用 2025-12-29 15:54:47 +08:00
wonder 64b955da9d ✨Feat: 随机数生成 2025-12-29 15:46:18 +08:00
+13 -1
View File
@@ -1 +1,13 @@
package go_study package main
import (
"fmt"
"math"
"math/rand"
)
func main() {
fmt.Println("Hello World")
fmt.Println("My favorite number is", rand.Intn(100))
fmt.Println("运算 根号2,结果为 ", math.Sqrt(2))
}