Help for this page

Select Code to Download


  1. or download this
    $| = 1;
    
  2. or download this
    undef $x;
    for(@exes){
        $x=$x+$_;
    }
    
  3. or download this
    undef $x;
    for(@exes){
        $x += $_;
    }
    
  4. or download this
    for(@exes){
        $tot += ($_-$ave)**2;
    }