pascalabcnet/InstallerSamples/LINQ/Linq2.pas

14 lines
219 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
function IsPrime(x: integer): boolean;
begin
var sqx := Round(Sqrt(x));
var i := 2;
while (i <= sqx) and (x mod i <> 0) do
i += 1;
Result := i > sqx;
end;
begin
Range(2,1000).Where(IsPrime).Print;
end.