Как посчитать логарифм?
function Log(x, b: Real): Real;
begin
Result := ln(x) / ln(b);
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
ShowMessage(Format('%f', [Log(10, 10)]));
end;
|