Contoh Perulangan Angka program php dengan For
contoh perulangan for php sederhana.
bentuk angka segitiga menurun naik turun .
Contoh 1 :
<html>
<head>
<title>Struktur pengulangan dengan FOR</title>
</head>
<body>
<?php
for($r=6; $r>=1; $r--)
{
for($s=1; $s<$r; $s++)
{
echo "$s";
//echo "*";
}
echo "<br>";
}
?>
</body>
</html>
Script tersebut akan menampilkan angka seperti dibawah :
12345
1234
123
12
1
Contoh 2 :
<html>
<head>
<title>Struktur pengulangan dengan FOR</title>
</head>
<body>
<?php
for($r=1; $r<=6; $r++)
{
for($s=5; $s>=$r; $s--)
{
echo "$s";
//echo "*";
}
echo "<br>";
}
?>
</body>
</html>
Script tersebut akan menampilkan angka seperti dibawah :
54321
5432
543
54
5
Contoh 3:
<html>
<head>
<title>Struktur pengulangan dengan FOR</title>
</head>
<body>
<?php
for($r=1; $r<=6; $r++)
{
for($s=1; $s<$r; $s++)
{
echo "$s";
//echo "*";
}
echo "<br>";
}
?>
</body>
</html>
Script tersebut akan menampilkan angka seperti dibawah :
1
12
123
1234
12345
bentuk angka segitiga menurun naik turun .
Contoh 1 :
<html>
<head>
<title>Struktur pengulangan dengan FOR</title>
</head>
<body>
<?php
for($r=6; $r>=1; $r--)
{
for($s=1; $s<$r; $s++)
{
echo "$s";
//echo "*";
}
echo "<br>";
}
?>
</body>
</html>
Script tersebut akan menampilkan angka seperti dibawah :
12345
1234
123
12
1
Contoh 2 :
<html>
<head>
<title>Struktur pengulangan dengan FOR</title>
</head>
<body>
<?php
for($r=1; $r<=6; $r++)
{
for($s=5; $s>=$r; $s--)
{
echo "$s";
//echo "*";
}
echo "<br>";
}
?>
</body>
</html>
Script tersebut akan menampilkan angka seperti dibawah :
54321
5432
543
54
5
Contoh 3:
<html>
<head>
<title>Struktur pengulangan dengan FOR</title>
</head>
<body>
<?php
for($r=1; $r<=6; $r++)
{
for($s=1; $s<$r; $s++)
{
echo "$s";
//echo "*";
}
echo "<br>";
}
?>
</body>
</html>
Script tersebut akan menampilkan angka seperti dibawah :
1
12
123
1234
12345
hmm thank gan , siip nih..
ReplyDeleteMy blog
bang kalo mau
ReplyDelete54321
4321
321
21
1
bisa ?
good
ReplyDeleteMy blog
bang kalau
ReplyDelete4444
333
22
1