pascalabcnet/_Presentations/2015 New Features/Programs/09-1_DynArr.pas

14 lines
238 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
var a: array of integer;
begin
a := Seq(2,5,7,10);
writeln(a);
a := SeqRandom(10);
writeln(a);
var b := Seq('a','e','i','o','u','y');
writeln(b);
a := SeqFill(1,5);
writeln(a);
a := ReadSeqInteger(5);
writeln(a);
end.