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

36 lines
962 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/// Модуль упрощенной структуры
unit MyUnit; // имя модуля должно совпадать с именем файла
const Size = 100;
type IntArr = array [1..Size] of integer;
var Delimiter: string := ' ';
// Документирующие комментарии отображаются при наведении на имя курсора мыши
/// Заполняет массив случайными числами
procedure FillArr(var a: IntArr; n: integer);
begin
for var i:=1 to n do
a[i] := Random(100);
end;
/// Выводит массив
procedure WriteArr(const a: IntArr; n: integer);
begin
for var i:=1 to n do
write(a[i],Delimiter);
writeln;
end;
/// Возвращает минимальный элемент в массиве
function Min(const a: IntArr; n: integer): integer;
begin
Result := a[1];
for var i:=1 to n do
if Result>a[i] then
Result := a[i];
end;
end.