2022-07-12:以下go语言代码输出什么?A:1 1;B:1.0 1.0;C:编译不通过;D:1.0 1。package mainimport "fmt"func main() { fmt.Println(1 % 2.0) fmt.Println(int(1) % 2.0)}