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

16 lines
327 B
ObjectPascal

// Вложенные циклы for. Сетка из квадртов
uses GraphABC;
const
sz = 35;
zz = 5;
begin
var h := sz+zz;
for var nx:=0 to Window.Width div h do
for var ny:=0 to Window.Height div h do
begin
Brush.Color := clRandom;
Rectangle(zz+nx*h,zz+ny*h,zz+nx*h+sz,zz+ny*h+sz);
end;
end.