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