Language:
Русский
English
{Odd.PAS}
▀▀▀▀▀▀▀▀▀▀▀
{Sample code for the Odd function.}
uses WinCrt;
begin
if Odd(5) then
Writeln('5 is odd')
else
Writeln('Something is odd');
end.
Odd.PAS |
Language: {Odd.PAS} uses WinCrt; begin |
|
|