Shadowing

Report a typo

Here is the code example:

...

func main() {
    var count int
    fmt.Scan(&count)

    if count > 5 {
        count := 3
        count += 1
        fmt.Println(count)
    }

    fmt.Println(count)
}

Which numbers will be printed if the input value is 15?

Select one option from the list
___

Create a free account to access the full topic