int
Retorna a parte inteira de um valor numérico.
Sintaxe
int( valor ): real ;
Onde:
- valor é uma expressão do tipo integer ou real
Exemplo
Program PascalZIM;
begin
writeln( int(12.34) ) ; // Mostra 12.00
writeln( frac(12.34) ) ; // Mostra 0.34
writeln( int(12) ) ; // Mostra 12.00
writeln( frac(12) ) ; // Mostra 0.00
end.
Created with the Freeware Edition of HelpNDoc: Free help authoring environment