Multiply
This code does not execute properly. Try to figure out why.
Solutions
π Python
def multiply(a, b):
if(a != None and b != None):
return a * bπ² Powershell
function Multiply($a, $b)
{
return (( $a * $b ))
}Last updated
Was this helpful?