Go代码如下。
错误消息:语法错误:第9行语句末尾的意外float64。
git push
我不知道出了什么问题。谁知道呢?
答案 0 :(得分:8)
将第9行更改为以下任何一种陈述:
v := math.Pow(x,n) // implicit type declaration and assignment
或
var v float64 = math.Pow(x,n) // explicit type declaration and assignment
答案 1 :(得分:1)
Go中的变量声明
静态 var var_name data_type =值
或
动态: var_name:=值
在第9行的情况下,您错过了两个标准