Php Program to Identify Even and Odd from 1 to 200 on December 17, 2021 Get link Facebook X Pinterest Email Other Apps (even.php)<?phpfor ($i=1; $i<=200; $i++) { if ($i % 2 == 0) { echo "Even: $i<br>"; } else { echo "Odd: $i<br>"; }}?> Comments
Comments
Post a Comment