function Parity(n: Integer): Integer;
var
Mask, I, Bits: Integer;
begin
Bits := 0;
for I := 0 to SizeOf(Integer)*8 - 1 do
begin
Mask := 1 shl I;
if ((n and Mask) <> 0) then Inc(Bits);
end;
Result := Ord(Odd(Bits));
end;
begin
writeln(Parity(42));
end.
Ord(False) equals 0
function Parity(n: Int32): Integer;
begin
Result := Ord(Odd(PopCnt(DWORD(n))));
end;
var
i: Int32;
begin
i := 42;
writeln('Parity(42) = ',Parity(i));
end.
PopCnt returns the number of set bits, it only accepts unsigned parameters, hence the typecast to DWORD (also 32-bit).
sprintf %b converts the integer $i into a string of zeros and ones. This is matched against a '1' repeatedly (courtesy of the g regex modifier). The result of that is a list of matches returned into list variable @ones.
The list variable @ones is then assigned to scalar $count, which yields a count of the list items.
Modulo 2 of the count is then taken in order to get the parity. If the number of bits is odd, then there will be a one remainder, and one is taken as true by Perl
function Parity(n: Integer): Integer;
var
Mask, I, Bits: Integer;
begin
Bits := 0;
for I := 0 to SizeOf(Integer)*8 - 1 do
begin
Mask := 1 shl I;
if ((n and Mask) <> 0) then Inc(Bits);
end;
Result := Ord(Odd(Bits));
end;
begin
writeln(Parity(42));
end.
function Parity(n: Int32): Integer;
begin
Result := Ord(Odd(PopCnt(DWORD(n))));
end;
var
i: Int32;
begin
i := 42;
writeln('Parity(42) = ',Parity(i));
end.