odd

Pascalzim

odd

Verifica a paridade do argumento, retornando true se o argumento é ímpar, false em caso contrário.

Sintaxe


function odd ( x: integer ): boolean ;



Exemplo

Program PascalZIM ;

  begin

     if odd( 5 ) then

       writeln( '5 é impar!' )

     else

       writeln( '5 não é impar...' );

    end.


Created with the Freeware Edition of HelpNDoc: Free PDF documentation generator