×
×
Correct!
Print "1" if x is equal to y, print "2" if x is greater than y, otherwise print "3".
package main
import ("fmt")
func main() {
var x = 50
var y = 50
@(2) x @(2) y {
fmt.Print("1")
} @(7) x @(1) y {
fmt.Print("2")
} @(4) {
fmt.Print("3")
}
}
package main
import ("fmt")
func main() {
var x = 50
var y = 50
if x == y {
fmt.Print("1")
} else if x > y {
fmt.Print("2")
} else {
fmt.Print("3")
}
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?