pascalabcnet/InstallerSamples/Other/SpeedTests/CalculationsGlobalLocal/BlockVars.pas

16 lines
375 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Сравнение скорости работы глобальных и внутриблочных переменных.
// См. также файл GlobalVars.pas
uses Utils;
begin
var s := 0.0;
var i: real := 1;
while i<10000000 do
begin
s += 1/i;
i += 1;
end;
writeln(s);
writeln('Время расчета = ',Milliseconds/1000,' с');
end.