Advertisement
theloserboy

Segitiga Bintang (1)

Nov 11th, 2011
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <html>
  2. <head><title> Latihan PHP </title></head>
  3. <body>
  4. <?php
  5.  
  6. $f=9;
  7.  
  8. for($a=1; $a<=$f; $a++)
  9. {
  10. for($b=1; $b<$a; $b++)
  11. {
  12. echo "*";
  13. }
  14. echo "<br />";
  15. }
  16.  
  17. for($c=1; $c<=$f; $c++)
  18. {
  19. for($d=$c; $d<=$f; $d++)
  20. {
  21. echo "*";
  22. }
  23. echo "<br />";
  24. }
  25. ?>
  26. </body>
  27. </html>
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement