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

22 lines
395 B
ObjectPascal

// Цикл for
const n = 20;
var i: integer;
begin
writeln('Числа от 1 до ',n,':');
for i:=1 to n do
write(i,' ');
writeln;
writeln;
writeln('Числа от ',n,' до 1:');
for i:=n downto 1 do
write(i,' ');
writeln;
writeln;
writeln('Маленькие английские буквы:');
for c: char := 'a' to 'z' do
write(c,' ');
writeln;
end.