function lovefunc(int $flower1, int $flower2) : bool{
if(($flower1 % 2 === 1 && $flower2 % 2 === 0) || ($flower1 % 2 === 0 && $flower2 % 2 === 1)){
return true ;
}else{
return false; // your code here
}
}
Catégories : Non classé