Browse Source

fix(binarycheck): fix branch

DEV-4017-prototypes-exercise-1-animals
jrosendo 2 years ago committed by José Rosendo
parent
commit
3a08d55a2f
  1. 44
      subjects/binarycheck/README.md

44
subjects/binarycheck/README.md

@ -0,0 +1,44 @@
## 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
$ go run .
0
1
1
0
1
```
Loading…
Cancel
Save