Help for this page

Select Code to Download


  1. or download this
    my $area = 0;
    for my $h (1..$height) {
       $area = $area + $width;
    }
    
  2. or download this
    my $area = $height * $width;