function isNon($number) {
if ($number % 2 == 0) {
echo "El numero es par";
} else {
echo "El numero es impar";
}
}
//example
isNon(2); //El numero es par
isNon(3); //El numero es impar
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)