Menu
×
×
正确
package main
import ("fmt")
func main() {
@(2) These lines
are comments @(2)
fmt.Println("Hello World!")
}
package main
import ("fmt")
func main() {
/* These lines
are comments */
fmt.Println("Hello World!")
}
不正确
点击 此处 重试 正确
下一题 ❯package main import ("fmt") func main() {w3exercise_input_no_0These lines are commentsw3exercise_input_no_1fmt.Println("Hello World!") } |