Guest User

Untitled

a guest
Feb 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. $lukujono = $_GET['lukujono']; // Can't touch this line
  4. $lukutaulukko = explode(',',$lukujono); // Can't touch this line
  5.  
  6. $pisteet = $lukujono;
  7. $summa = array_sum($lukutaulukko);
  8. $keskiarvo = ($summa/count($lukutaulukko));
  9.  
  10.  
  11. echo "Pisteet olivat: $pisteetn"; // Can't touch this line
  12. echo "Pisteiden summa: $summan"; // Can't touch this line
  13. echo "Pisteiden keskiarvo: $keskiarvo"; // Can't touch this line
  14. ?>
Add Comment
Please, Sign In to add comment