×
×
Correct!
Insert the missing parts to complete the following
package main
import ("fmt")
func main() {
var day = 2
switch @(3) {
@(4)(1):
fmt.Print("Saturday")
@(4)(2):
fmt.Print("Sunday")
}
}
package main
import ("fmt")
func main() {
var day = 2
switch day {
case(1):
fmt.Print("Saturday")
case(2):
fmt.Print("Sunday")
}
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?