Check even odd in PHP

📔 : PHP 🔗
Copy Fullscreen Close Fullscreen
<?php
  function check_even_odd($number)
  {
    if($number%2 == 0)
      echo "$number is an even number.";
    else
      echo "$number is an odd number.";
  }

  /*now test*/
  check_even_odd(22);
  echo"<br/>";
  check_even_odd(21);
?>
Output
22 is an even number.
21 is an odd number.

Related Topics :

Rahul Kumar

Rahul Kumar

Hi ! I'm Rahul Kumar Rajput founder of learnhindituts.com. I'm a software developer having more than 4 years of experience. I love to talk about programming as well as writing technical tutorials and blogs that can help to others. I'm here to help you navigate the coding cosmos and turn your ideas into reality, keep coding, keep learning :)

Get connected with me. :) LinkedIn Twitter Instagram Facebook