Re: Requesting help again... as a beginner....
- Posted by jiri May 23, 2009
- 978 views
jimcbrown said...
if remainder(a, 2) != 0 then puts(1,"\nThat is an odd number.") end if
Bits twiddling is neater and faster:
if and_bits(a, 1) then ...
jiri
if remainder(a, 2) != 0 then puts(1,"\nThat is an odd number.") end if
Bits twiddling is neater and faster:
if and_bits(a, 1) then ...
jiri