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

17 lines
238 B
ObjectPascal

// Öèêë for. ×èñëà Ôèáîíà÷÷è
const n = 25;
begin
var a := 1;
var b := 1;
writeln('×èñëà Ôèáîíà÷÷è:');
write(a,' ',b,' ');
for var i:=3 to n do
begin
var c := a + b;
write(c,' ');
a := b;
b := c;
end;
end.