2025-05-12 10:07:51 +03:00

18 lines
528 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{\rtf1\ansi\ansicpg1254\deff0{\fonttbl{\f0\fnil\fcharset162 Tahoma;}}
\viewkind4\uc1\pard\lang1055\f0\fs16 var\par
a,x,y,z,rad: intger;\par
Begin\par
x := strtoint( inputbox('X of Center','','10')); \par
y := strtoint( inputbox('Y of Center','','10')); \par
z := strtoint( inputbox('Radius','','20')); \par
rad := z;\par
for a :=1 to (z div 3) do\par
begin\par
DrawCircle(0,x,y,rad,1,psSolid,clBlack,bsClear,0,True);\par
rad := rad - 2;\par
end;\par
\par
Refresh;\par
end.\par
}