Help for this page

Select Code to Download


  1. or download this
    if ($sign==5) {
        print "the Multiplication Table For $num1 and $num2 is \n";
    ...
            print "$_ X $num1 = ", $_ * $num1, "\n";        
        }
    }
    
  2. or download this
    if ($sign==5)
        {
    ...
                print "$_ X $num1 = ", $_ * $num1, "\n";        
            }
        }
    
  3. or download this
    if ($sign==5)
            {
    ...
    print "$_ X $num1 = ", $_*$num1, "\n";        
        }
            }
    
  4. or download this
    if (1 == $sign) {
        print "The Sum of the Numbers $num1 + $num2 is ", $num1 + $num2, "
    +\n";
    ...
            print "$_ X $num1 = ", $_ * $num1, "\n";        
        }
    }