Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. //előltesztelős ciklusok
  3. //feltétel vizsgálat után ha igaz akkor lefut a ciklusmagja
  4. /*
  5. while()
  6. {
  7. ciklus mag;
  8. }
  9. */
  10.  
  11. $szam = 1;
  12. while($szam<100){
  13. echo($szam."<br>");
  14. $szam++;
  15. }
  16.  
  17. $szam = 1;
  18.  
  19. echo("<hr><table border='1'><tr>");
  20. $color = array(1 => "white", 0 => "black");
  21. while($szam<=100)
  22. {
  23. echo("<td style='width: 30px; height: 30px; background-color: " . $color[$szam%2] . "'>".$szam."</td>");
  24. if($szam % 10 == 0) echo("</tr><tr>");
  25.  
  26. $szam++;
  27. }
  28. echo("</tr></table>");
  29.  
  30. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement