Created
March 17, 2017 06:24
-
-
Save uyab/efe427fd711806e64a6400c088dff4c5 to your computer and use it in GitHub Desktop.
Print bilangan ganjil genap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$ganjil = $genap = []; | |
foreach (range(1, 100) as $angka) { | |
if ($angka % 2 == 0) { | |
$genap[] = $angka; | |
} else { | |
$ganjil[] = $angka; | |
} | |
} | |
echo 'List Bilangan Genap'; | |
echo "<br>"; | |
echo implode("<br>", $genap); | |
echo "<br>"; | |
echo 'List Bilangan Ganjil'; | |
echo "<br>"; | |
echo implode("<br>", $ganjil); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment