Advertisement
tei123

grzybekchuj

Oct 21st, 2016
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <html> <head>
  2. </head>
  3. <body>
  4. <?php
  5. echo ('Lukasz Gawron <br> KOT <br> ');
  6. $a=1;
  7. $b=2;
  8. $c=$a+$b;
  9. echo($c);
  10. echo ('<br> ');
  11. for($i=1;$i<11;$i++)
  12. {
  13. echo($i);
  14. echo('<br>');
  15. };
  16. for($i=1;$i<11;$i++)
  17. {
  18. echo($i);
  19. echo(' ');
  20. };
  21.  
  22. echo('<br>');
  23. echo('<br>');
  24. for($i=10;$i>0;$i--)
  25. {
  26. echo($i);
  27. echo('<br>');
  28. };
  29. echo('<br>');
  30.  
  31. for($i=1;$i<11;$i++)
  32. {
  33. echo('@@@@@@@@@@');
  34. echo('<br>');
  35. };
  36.  
  37.  
  38. for($i=1; $i<=10; $i++)
  39. {
  40. for($l=1; $l<=10; $l++)
  41. {
  42. echo $i*$l;
  43. echo " ";
  44. }
  45. echo "<br>";
  46. }
  47.  
  48. $x=5;
  49.  
  50.  
  51. for($i=1; $i<=5; $i++)
  52. {
  53. for($l=$x; $l>=1;$l--)
  54. {
  55.  
  56. echo ('a');
  57. echo " ";
  58.  
  59. };
  60. $x--;
  61. echo "<br>";
  62.  
  63. };
  64. $x=1;
  65.  
  66. for($i=5; $i>=1; $i--)
  67. {
  68. for($l=1; $l<=$x;$l++)
  69. {
  70.  
  71. echo ('a');
  72. echo " ";
  73.  
  74. };
  75. $x++;
  76. echo "<br>";
  77.  
  78. }
  79. ?>
  80. </body>
  81.  
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement