Help for this page

Select Code to Download


  1. or download this
    print $greeting;
    chomp($operator = <STDIN>);
    #your other prints and stuff here
    $c = $a - $b if $operator eq "-";
    $c = $a * $b if $operator eq "*";
    
  2. or download this
    if ($operator eq "-")
    {
    ...
    } else {
      $c = $a * $b;
    }