Advertisement
rana1704

checks number is odd or even

Nov 1st, 2020
2,240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7.  
  8.     <?php
  9.  
  10.     $a = 11;
  11.     $r = $a%2;
  12.     if($r==0)
  13.     {
  14.     echo $a.' is even';
  15.     }
  16.     else{
  17.         echo "$a is odd";
  18.     }
  19.  
  20.  
  21.  
  22.  
  23. ?>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement