public/subjects/binarycheck
Rakhmetuly Zhanserik 982be0a902 Update README.md 2024-04-19 17:03:08 +01:00
..
README.md Update README.md 2024-04-19 17:03:08 +01:00
main.go chore(exam): remove all folders that contained "-exam" suffix & add the main.go to exercises that needed it 2024-01-04 09:36:37 +00:00

README.md

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 int32) int {

}

Usage

Here is a possible program to test your function:

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:

$ go run .
0
1
1
0
1