Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

Webserver1/Ovningar/Repetition/

rep1.php
rep2.php
rep3b.php
rep3c.php
rep4.php
rep5.php

rep1.php

28 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="sv">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Repetition Repetition Repetition</title>
</head>
<body>
  <?php
  $myArray 
= [];

  function 
medelvärde(&$array) {
      
$sum 0;
      for (
$i=0;$i<count($array);$i++) {
        
$sum += $array[$i];
      }
      return 
$sum count($array);
    }

  for (
$i=0$i 10$i++) { 
    
$myArray[] = 2**$i;
  }

  echo 
"<p>Värden: " implode(", "$myArray) . "</p>";
  echo 
"<p>Medelvärde: " medelvärde($myArray) . "</p>";
  
?>
</body>
</html>