主页
Go
Go 算术运算符
demo_oper_mod
运行 ❯
×
更改方向
保存代码
更改主题
package main import ("fmt") func main() { x:= 8 y:= 3 fmt.Println(x%y) }
2