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

Menu
×
×
正确

练习:

在Go语言中,多行注释是用特殊字符来写的,是哪个字符?

package main import ("fmt") func main() { /* These lines are comments */ fmt.Println("Hello World!") }

不正确

点击 此处 重试

正确

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

func main() {
   These lines
  are comments  
  fmt.Println("Hello World!")
}







×

重置分数?