Help for this page

Select Code to Download


  1. or download this
     if ($total eq "3") {
     $revenue = 30;
    ...
     } elsif ($total eq "10") {
     $revenue = 50;
     }
    
  2. or download this
     if ($total eq "3") {
     $revenue += 30;
    ...
     if ($total eq "10") {
     $revenue += 50;
     }