all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
procedure PrintSierpinski(order : Integer);
|
||||
var
|
||||
x, y, size : Integer;
|
||||
begin
|
||||
size := (1 shl order)-1;
|
||||
for y:=size downto 0 do begin
|
||||
Print(StringOfChar(' ', y));
|
||||
for x:=0 to size-y do begin
|
||||
if (x and y)=0 then
|
||||
Print('* ')
|
||||
else Print(' ');
|
||||
end;
|
||||
PrintLn('');
|
||||
end;
|
||||
end;
|
||||
|
||||
PrintSierpinski(4);
|
||||
Loading…
Add table
Add a link
Reference in a new issue