Minggu, 23 Oktober 2011

Statemen For output 1 2 4 8 16 32 64 dengan PHP

Script PHP

<html>
<title>Pengulangan</title>
<body>
<?php
for($x=1;$x<=64;$x+=$x)
{
echo "$x";
}
?>
</body>
</html>

Output


0 komentar:

Posting Komentar