This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

12 lines
285 B
ObjectPascal

// Исключения. Генерация исключения
function f(x: integer): integer;
begin
if x=0 then
raise new System.Exception('Аргумент функции f не может быть равен 0');
Result := 10 mod x;
end;
begin
writeln(f(0));
end.