mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-07 14:52:31 +02:00
17 lines
331 B
ObjectPascal
17 lines
331 B
ObjectPascal
Program Example82;
|
|
|
|
{ This program demonstrates the StrToInt function }
|
|
|
|
Uses sysutils;
|
|
|
|
Begin
|
|
Writeln (StrToInt('1234'));
|
|
Writeln (StrToInt('-1234'));
|
|
Writeln (StrToInt('0'));
|
|
Try
|
|
Writeln (StrToInt('12345678901234567890'));
|
|
except
|
|
On E : EConvertError do
|
|
Writeln ('Invalid number encountered');
|
|
end;
|
|
End. |