GO 语法
GO 注释
GO 变量
GO 数据类型
GO 数组
GO 运算符
GO 条件
GO 开关
GO 循环
GO 函数

Menu
×
×
正确

练习:

在 Go 语言中,注释使用特殊字符来写。它是哪一个?

package main import ("fmt") func main() { // this is a comment fmt.Println("Hello World!") }

不正确

点击 此处 重试

正确

下一题 ❯
package main
import ("fmt")

func main() {
   this is a comment
  fmt.Println("Hello World!")
}  







×

重置分数?