trunc
Trunca um valor real em um valor inteiro.
Sintaxe
function trunc ( x: real ): integer;
Exemplo
Program PascalZIM ;
begin
writeln( 1.4, ' se torna ', trunc( 1.4 ) ) ; { 1.0 }
writeln( 1.5, ' se torna ', trunc( 1.5 ) ) ; { 1.0 }
writeln( -1.4, ' se torna ', trunc( -1.4 ) ) ; { -1.0 }
writeln( -1.5, ' se torna ', trunc( -1.5 ) ) ; { -1.0 }
end.
Created with the Freeware Edition of HelpNDoc: Easy CHM and documentation editor