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.
OldPascalProjects/!NewExecutors/Множество1.pas
2024-03-10 20:32:51 +03:00

12 lines
190 B
ObjectPascal

uses Исполнители;
begin
var множ1 := Множество.Новое(3,5,4,5);
множ1.Вывести;
var множ2 := Множество.Новое(7,5,3,9);
множ2.Вывести;
множ1.Пересечение(множ2).Вывести;
end.