TheAlgorithms-PHP/Maths/CheckEven.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
241 B
PHP

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