You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
## binarycheck
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Write a function that takes an int as an argument and returns 0 if the number is odd, and 1 if the number is even.
|
|
|
|
|
|
|
|
### Expected function
|
|
|
|
|
|
|
|
func BinaryCheck(nbr int) int {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Here is a possible program to test your function:
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"piscine"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
fmt.Println(piscine.BinaryCheck(5))
|
|
|
|
fmt.Println(piscine.BinaryCheck(0))
|
|
|
|
fmt.Println(piscine.BinaryCheck(8))
|
|
|
|
fmt.Println(piscine.BinaryCheck(-9))
|
|
|
|
fmt.Println(piscine.BinaryCheck(-4))
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output:
|
|
|
|
|
|
|
|
```console
|
|
|
|
<<<<<<< HEAD
|
|
|
|
=======
|
|
|
|
|
|
|
|
>>>>>>> c73bdf4f (fix(binarycheck): fix branch)
|
|
|
|
$ go run .
|
|
|
|
0
|
|
|
|
1
|
|
|
|
1
|
|
|
|
0
|
|
|
|
1
|
|
|
|
```
|