Convert the following java code into Visual Basic code publi
Convert the following java code into Visual Basic code.
public Boolean isOdd(int a)
{
if (a % 2 == 0)
{
return false;
}
else { return true;
}
}
Solution
public Function isOdd(ByVal n As Integer) As Boolean remainder = b Mod 2 result = False If remainder = 0 Then result = False Else result = True End If return result End Function
