2022-07-02:以下go语言代码输出什么?A:编译错误;B:Panic;C:NaN。package mainimport "fmt"func main() { var a = 0.0 const b = 0.0 fmt.Println(a / b)}