Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html> <head>
- </head>
- <body>
- <?php
- echo ('Lukasz Gawron <br> KOT <br> ');
- $a=1;
- $b=2;
- $c=$a+$b;
- echo($c);
- echo ('<br> ');
- for($i=1;$i<11;$i++)
- {
- echo($i);
- echo('<br>');
- };
- for($i=1;$i<11;$i++)
- {
- echo($i);
- echo(' ');
- };
- echo('<br>');
- echo('<br>');
- for($i=10;$i>0;$i--)
- {
- echo($i);
- echo('<br>');
- };
- echo('<br>');
- for($i=1;$i<11;$i++)
- {
- echo('@@@@@@@@@@');
- echo('<br>');
- };
- for($i=1; $i<=10; $i++)
- {
- for($l=1; $l<=10; $l++)
- {
- echo $i*$l;
- echo " ";
- }
- echo "<br>";
- }
- $x=5;
- for($i=1; $i<=5; $i++)
- {
- for($l=$x; $l>=1;$l--)
- {
- echo ('a');
- echo " ";
- };
- $x--;
- echo "<br>";
- };
- $x=1;
- for($i=5; $i>=1; $i--)
- {
- for($l=1; $l<=$x;$l++)
- {
- echo ('a');
- echo " ";
- };
- $x++;
- echo "<br>";
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement