Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

i'm still getting same error too
2 weeks ago
If i do like who ask the question the result is says "
Your code's output does not match the expected outcome for this exercise."


package main
import (
"fmt"
"math/rand"
)

func main() {
target := rand.Intn(100)
fmt.Println(target)
}
3 weeks ago
but still error "
Your code's output does not match the expected outcome for this exercise."
3 weeks ago
Same me too, idk why

package main

import (
"fmt"
"math/rand"
)

func main() {
target := rand.Intn(100) + 1
fmt.Println(target + 1) // Menambahkan teks untuk mencocokkan ekspektasi output
}
3 weeks ago