View Single Post
Peace-Maker
SourceMod Plugin Approver
Join Date: Aug 2008
Location: Germany
Old 06-26-2012 , 18:23   Re: Even and Odd number
Reply With Quote #4

Code:
stock bool:IsEven(num)
{
    return (num & 1) == 0;
}

stock bool:IsOdd(num)
{
    return (num & 1) == 1;
}
__________________
Peace-Maker is offline