Minggu, 23 Oktober 2011

Statemen while output 1 3 5 7 9 11 13 15 17 dengan PHP

Script PHP

<html>
<title>Pengulangan</title>
<body>
<?php
$i=1;
while($i<=17)
{
echo "$i";
$i+=2;
}
?>
</body>
</html>


Out put


0 komentar:

Posting Komentar