TheAlgorithms-PHP/Maths/CheckOdd.php
VISHAL V NAIR e0be0fdf54
Add Odd and Even Check Functions (#165)
* Add CheckOdd and CheckEven functions

* code style improved

* code corrected
2024-09-30 23:31:10 -06:00

14 lines
238 B
PHP

<?php
/**
* This function checks whether
* the provided integer is odd.
*
* @param int $number An integer input
* @return bool whether the number is odd or not
*/
function isOdd(int $number): bool
{
return $number % 2 !== 0;
}