Skip to content

Instantly share code, notes, and snippets.

@simplyniceweb
Last active August 29, 2015 14:12
Show Gist options
  • Save simplyniceweb/d62f1d23b7fb6d5f2821 to your computer and use it in GitHub Desktop.
Save simplyniceweb/d62f1d23b7fb6d5f2821 to your computer and use it in GitHub Desktop.
<?php
/**
* Odd and even counter
*/
$odd = $even = 0;
$given = 20;
for ($i=0;$i<$given;$i++)
{
($i % 2 == 0) ? $even++ : $odd++;
}
echo "Given number: " . $given;
echo "<br/>";
echo "Even numbers: " . $even;
echo "<br/>";
echo "Odd numbers: " . $odd;
/* End of file */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment