Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html> <head>
- </head>
- <body>
- <?php
- $tab = array(5);
- for ($i=0;$i<5;$i++)
- {
- $tab[$i]=rand(0,100);
- echo $tab[$i]." ";
- };
- echo '<br>';
- for ($i=4;$i>=0;$i--)
- {
- echo $tab[$i]." ";
- }
- echo '<br>';
- echo $tab[2];
- $s=0;
- $sn=0;
- for ($i=0;$i<5;$i++)
- {
- if($tab[$i]%2==0)
- $s=$tab[$i]+$s;
- else{
- $sn=1;
- $sn=$sn*$tab[$i];};
- }
- echo '<br>';
- echo $s;
- echo '<br>';
- echo $sn;
- echo '<br>';
- sort ($tab);
- for ($i=0;$i<5;$i++)
- {
- echo $tab[$i]." ";
- };
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement